1 | import { flags } from '@oclif/command';
|
2 | import BaseCommand from '../../base-command';
|
3 | import { IntegrationBuildEnv } from '../../types';
|
4 | declare const cdnHost = "cdn-host";
|
5 | export default class PackViews extends BaseCommand {
|
6 | static description: string;
|
7 | static hidden: boolean;
|
8 | static flags: {
|
9 | [cdnHost]: flags.IOptionFlag<string>;
|
10 | help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
|
11 | path: flags.IOptionFlag<string | undefined>;
|
12 | silent: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
|
13 | };
|
14 | run(): Promise<void>;
|
15 | buildStencil(env: IntegrationBuildEnv): Promise<{}>;
|
16 | }
|
17 | export {};
|