Repository URL to install this package:
Version:
2.0.11-7 ▾
|
notion-desktop
/
usr
/
lib
/
notion-desktop
/
resources
/
app
/
node_modules
/
electron-updater
/
out
/
AppAdapter.d.ts
|
---|
export interface AppAdapter {
readonly version: string;
readonly name: string;
readonly isPackaged: boolean;
/**
* Path to update metadata file.
*/
readonly appUpdateConfigPath: string;
/**
* Path to user data directory.
*/
readonly userDataPath: string;
/**
* Path to cache directory.
*/
readonly baseCachePath: string;
whenReady(): Promise<void>;
quit(): void;
onQuit(handler: (exitCode: number) => void): void;
}
export declare function getAppCacheDir(): string;