@bubblewrap/cli
Version:
CLI tool to Generate TWA projects from a Web Manifest
15 lines (14 loc) • 428 B
TypeScript
import type { ParsedArgs } from 'minimist';
import { Prompt } from '../Prompt';
export interface PlayArgs extends ParsedArgs {
track?: string;
serviceAccountFile?: string;
manifest?: string;
appBundleLocation?: string;
targetDirectory?: string;
retain?: number;
remove?: number;
list?: boolean;
add?: number;
}
export declare function play(args: PlayArgs, prompt?: Prompt): Promise<boolean>;