Skip to content

Latest commit

 

History

History
138 lines (71 loc) · 1.76 KB

File metadata and controls

138 lines (71 loc) · 1.76 KB

ILIB_ExtendLibraryFunctions interface

外部库方法

Signature

interface ILIB_ExtendLibraryFunctions 

Properties

Property

Modifiers

Type

Description

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>>

获取列表


属性详情

getclassificationtree

ILIB_ExtendLibraryFunctions.getClassificationTree property

获取分类树

Signature

getClassificationTree: () => Promise<Array<{
        name: string;
        uuid?: string;
        children?: Array<{
            name: string;
            uuid?: string;
        }> | undefined;
    }>>;

getdetail

ILIB_ExtendLibraryFunctions.getDetail property

获取详细信息

Signature

getDetail: (uuid: string) => Promise<any>;

getlist

ILIB_ExtendLibraryFunctions.getList property

获取列表

Signature

getList: (props: ILIB_ExtendLibrarySearchProperty<any>) => Promise<ILIB_ExtendLibrarySearchResult<any>>;