123456789101112131415161718192021 |
- import { Utils } from "../common/utils";
- import { IConfigItem } from "./ConfigDef";
- interface INestItem {
- pos: string;
- type: number;
- num: string;
- time: number;
- delay: number;
- pattern: number;
- }
- export class NestItem {
- id: number;
- data: INestItem;
- constructor(id, data){
- this.id = id;
- this.data = data;
- }
- }
|