nestItem.ts 342 B

123456789101112131415161718192021
  1. interface INestItem {
  2. pos: string;
  3. type: number;
  4. num: string;
  5. time: number;
  6. delay: number;
  7. pattern: string;
  8. shape: number,
  9. atktiming: string,
  10. }
  11. export class NestItem {
  12. id: number;
  13. data: INestItem;
  14. constructor(id, data){
  15. this.id = id;
  16. this.data = data;
  17. }
  18. }