Home > ILIB_ExtendLibrarySymbolFunctions > getList
ILIB_ExtendLibrarySymbolFunctions.getList property
Signature
typescript
getList: (
props: ILIB_ExtendLibrarySearchProperty<{
symbolType?: ELIB_SymbolType;
}>,
) =>
Promise<
ILIB_ExtendLibrarySearchResult<
ILIB_ExtendLibraryItem & {
symbolType: ELIB_SymbolType;
} & {
classification?: ILIB_ExtendLibraryClassificationIndex;
description?: string;
version?: string;
updateTime?: number;
createTime?: number;
creator?: ILIB_ExtendLibraryUserIndex;
modifier?: ILIB_ExtendLibraryUserIndex;
owner?: ILIB_ExtendLibraryUserIndex;
}
>
>;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21