17 lines
403 B
TypeScript
17 lines
403 B
TypeScript
// chrome/content/zotero/zoteroPane.js
|
|
|
|
declare const ZoteroPane: {
|
|
[attr: string]: any;
|
|
collectionsView: any;
|
|
itemsView: {
|
|
onSelect: {
|
|
addListener: (Function) => any;
|
|
};
|
|
};
|
|
progressWindow: any;
|
|
canEdit: () => boolean;
|
|
displayCannotEditLibraryMessage: () => void;
|
|
getSelectedCollection: (arg: boolean) => _ZoteroCollection;
|
|
getSelectedItems: () => Array<_ZoteroItem>;
|
|
};
|