fastlion-amis
Version:
一种MIS页面生成工具
17 lines (16 loc) • 386 B
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 declare type ReceiverData = Pick<MbContactsData, 'id' | 'name'> & {
alias?: string;
};