nestItem.ts 384 B

123456789101112131415161718192021
  1. import { Utils } from "../common/utils";
  2. import { IConfigItem } from "./ConfigDef";
  3. interface INestItem {
  4. pos: string;
  5. type: number;
  6. num: string;
  7. time: number;
  8. delay: number;
  9. pattern: number;
  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. }