Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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;