fastlion-amis
Version:
一种MIS页面生成工具
16 lines (14 loc) • 348 B
text/typescript
export interface MbContactsData {
id: string
parId: string
name: string
nodeType: 0 | 1
children?: MbContactsData[]
}
export interface PcContactsData {
id: string
name: string
parId: string | undefined | null
nodeType: 0 | 1
}
export type ReceiverData = Pick<MbContactsData, 'id' | 'name'> & { alias?: string }