nestItem.ts 363 B

12345678910111213141516171819202122
  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. bullet: string,
  11. }
  12. export class NestItem {
  13. id: number;
  14. data: INestItem;
  15. constructor(id, data){
  16. this.id = id;
  17. this.data = data;
  18. }
  19. }