mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 06:57:35 +08:00
25 lines
703 B
TypeScript
25 lines
703 B
TypeScript
declare const __EZBOOKKEEPING_IS_PRODUCTION__: boolean;
|
|
declare const __EZBOOKKEEPING_VERSION__: string;
|
|
declare const __EZBOOKKEEPING_BUILD_UNIX_TIME__: string;
|
|
declare const __EZBOOKKEEPING_BUILD_COMMIT_HASH__: string;
|
|
declare const __EZBOOKKEEPING_LICENSE__: string;
|
|
declare const __EZBOOKKEEPING_THIRD_PARTY_LICENSES__: string[];
|
|
|
|
interface Window {
|
|
EZBOOKKEEPING_SERVER_SETTINGS?: {
|
|
[key: string]: string | number | boolean | undefined | null;
|
|
};
|
|
}
|
|
|
|
interface Navigator {
|
|
browserLanguage?: string;
|
|
}
|
|
|
|
declare module "framework7/components/notification" {
|
|
export namespace Notification {
|
|
export interface Notification {
|
|
destroy(): void;
|
|
}
|
|
}
|
|
}
|