UNPKG

@bubblewrap/core

Version:

Core Library to generate, build and sign TWA projects

10 lines (9 loc) 321 B
export declare class Config { jdkPath: string; androidSdkPath: string; constructor(jdkPath: string, androidSdkPath: string); serialize(): string; saveConfig(path: string): Promise<void>; static deserialize(data: string): Config; static loadConfig(path: string): Promise<Config | undefined>; }