@lcap/builder
Version:
lcap builder utils
11 lines (10 loc) • 328 B
TypeScript
export interface PlayCommandOptions {
port?: number;
https?: boolean;
noPreview?: boolean;
noWatch?: boolean;
version?: string;
platform?: string;
}
declare const _default: (rootPath: string, { port, https, noPreview, noWatch, ...options }: PlayCommandOptions) => Promise<void>;
export default _default;