19 lines
401 B
TypeScript
19 lines
401 B
TypeScript
declare const _globalThis: {
|
|
[key: string]: any;
|
|
Zotero: _ZoteroTypes.Zotero;
|
|
ztoolkit: ZToolkit;
|
|
addon: typeof addon;
|
|
};
|
|
|
|
declare type ZToolkit = ReturnType<
|
|
typeof import("../src/utils/ztoolkit").createZToolkit
|
|
>;
|
|
|
|
declare const ztoolkit: ZToolkit;
|
|
|
|
declare const rootURI: string;
|
|
|
|
declare const addon: import("../src/addon").default;
|
|
|
|
declare const __env__: "production" | "development";
|