1 | import { flags } from '@oclif/command';
|
2 | import BaseCommand from '../../base-command';
|
3 | declare const skipInstall = "skip-install";
|
4 | export default class BuildFunctions extends BaseCommand {
|
5 | static description: string;
|
6 | static aliases: string[];
|
7 | static hidden: boolean;
|
8 | static flags: {
|
9 | [skipInstall]: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
|
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 | static args: never[];
|
15 | run(): Promise<void>;
|
16 | transpile: (entriesPath: string, distPath: string) => Promise<string[]>;
|
17 | }
|
18 | export {};
|