外部库方法
interface ILIB_ExtendLibraryFunctions |
Property |
Modifiers |
Type |
Description |
|---|---|---|---|
|
() => Promise<Array<{ name: string; uuid?: string; children?: Array<{ name: string; uuid?: string; }> | undefined; }>> |
获取分类树 | ||
|
(uuid: string) => Promise<any> |
获取详细信息 | ||
|
(props: ILIB_ExtendLibrarySearchProperty<any>) => Promise<ILIB_ExtendLibrarySearchResult<any>> |
获取列表 |
获取分类树
getClassificationTree: () => Promise<Array<{
name: string;
uuid?: string;
children?: Array<{
name: string;
uuid?: string;
}> | undefined;
}>>;获取详细信息
getDetail: (uuid: string) => Promise<any>;获取列表
getList: (props: ILIB_ExtendLibrarySearchProperty<any>) => Promise<ILIB_ExtendLibrarySearchResult<any>>;