Home > ILIB_ExtendLibraryCbbFunctions > getList
ILIB_ExtendLibraryCbbFunctions.getList property
签名
typescript
getList: (props: any) => Promise<ILIB_ExtendLibrarySearchResult<ILIB_ExtendLibraryItem & ILIB_ExtendLibrarySearchResultDataLine & {
schematics?: Array<{
uuid: string;
name: string;
updateTime: string;
description?: string;
}>;
pcbs?: Array<{
uuid: string;
name: string;
updateTime: number;
thumb?: string;
createTime?: number;
creator?: ILIB_ExtendLibraryUserIndex;
modifier?: ILIB_ExtendLibraryUserIndex;
description?: string;
}>;
boards?: Array<{
pcbUuid: string;
schUuid: string;
name: string;
}>;
sheets?: Array<{
uuid: string;
name: string;
belongSchematicUuid: string;
updateTime: number;
thumb?: string;
createTime?: number;
creator?: ILIB_ExtendLibraryUserIndex;
modifier?: ILIB_ExtendLibraryUserIndex;
description?: string;
}>;
}>>;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34