LarpixClient/electron/node_modules/electron-updater/out/AppAdapter.d.ts
olcxja cca8b02fea
Some checks failed
Android Build / publish (push) Successful in 33s
Linux Build / publish (push) Failing after 25s
Update gitignore (sorry)
2026-05-10 14:02:17 +02:00

21 lines
544 B
TypeScript

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;