Home > ILIB_ExtendLibraryDeviceFunctions > getList
ILIB_ExtendLibraryDeviceFunctions.getList property
Signature
typescript
getList: (props: ILIB_ExtendLibrarySearchProperty<{
attributes?: {
[key: string]: string;
};
symbolType?: ELIB_SymbolType;
}>) => Promise<ILIB_ExtendLibrarySearchResult<ILIB_ExtendLibraryItemIndex & {
classification?: ILIB_ExtendLibraryClassificationIndex;
symbol?: ILIB_ExtendLibraryItem & {
symbolType: ELIB_SymbolType;
};
footprint?: ILIB_ExtendLibraryItem;
model3d?: ILIB_ExtendLibraryItemIndex & {
adjustment?: {
size?: {
x: number;
y: number;
z: number;
};
rotation?: {
x: number;
y: number;
z: number;
};
offset?: {
x: number;
y: number;
z: number;
};
};
};
value?: string;
supplierPart?: string;
manufacturer?: string;
description?: string;
updateTime?: number;
createTime?: number;
attributes?: {
[key: string]: 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
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