Home > ILIB_ExtendLibraryCbbFunctions > getList
ILIB_ExtendLibraryCbbFunctions.getList property
Signature
typescript
getList: (props: any) =>
Promise<
ILIB_ExtendLibrarySearchResult<
ILIB_ExtendLibraryItem
& ILIB_ExtendLibrarySearchResultDataLine & {
schematics?:
| undefined
| {
uuid: string;
name: string;
updateTime: string;
description?: undefined | string;
}[];
pcbs?:
| undefined
| {
uuid: string;
name: string;
updateTime: number;
thumb?: undefined | string;
createTime?: undefined | number;
creator?: undefined | ILIB_ExtendLibraryUserIndex;
modifier?: undefined | ILIB_ExtendLibraryUserIndex;
description?: undefined | string;
}[];
boards?: undefined | { pcbUuid: string; schUuid: string; name: string }[];
sheets?:
| undefined
| {
uuid: string;
name: string;
belongSchematicUuid: string;
updateTime: number;
thumb?: undefined | string;
createTime?: undefined | number;
creator?: undefined | ILIB_ExtendLibraryUserIndex;
modifier?: undefined | ILIB_ExtendLibraryUserIndex;
description?: undefined | 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
35
36
37
38
39
40
41
42
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
35
36
37
38
39
40
41
42