UNPKG

common-mini-components

Version:

公共组件

19 lines (16 loc) 297 B
export interface IHelpData { id: number; code: string; name: string; detailList: IHelpDetailList[]; } export interface IHelpDetailList { id: number; content: string; } export interface IGlobalIHelp { [propName: string]: { name: string, detailList: IHelpDetailList[] } }