data.d.ts 602 Bytes
Newer Older
陈帅's avatar
陈帅 committed
1
export interface AdvancedOperation1 {
陈帅's avatar
陈帅 committed
2 3 4 5 6 7 8 9
  key: string;
  type: string;
  name: string;
  status: string;
  updatedAt: string;
  memo: string;
}

陈帅's avatar
陈帅 committed
10
export interface AdvancedOperation2 {
陈帅's avatar
陈帅 committed
11 12 13 14 15 16 17 18
  key: string;
  type: string;
  name: string;
  status: string;
  updatedAt: string;
  memo: string;
}

陈帅's avatar
陈帅 committed
19
export interface AdvancedOperation3 {
陈帅's avatar
陈帅 committed
20 21 22 23 24 25 26 27
  key: string;
  type: string;
  name: string;
  status: string;
  updatedAt: string;
  memo: string;
}

陈帅's avatar
陈帅 committed
28
export interface AdvancedProfileData {
陈帅's avatar
陈帅 committed
29 30 31 32
  advancedOperation1: AdvancedOperation1[];
  advancedOperation2: AdvancedOperation2[];
  advancedOperation3: AdvancedOperation3[];
}