Home > ILIB_ExtendLibraryDeviceFunctions > getList
ILIB_ExtendLibraryDeviceFunctions.getList property
签名
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_ExtendLibraryItem;
value?: string;
supplierPart?: string;
manufacturer?: string;
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
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24