UNPKG

533 BTypeScriptView Raw
1import { BaseCommand } from '../base-command.js';
2export default class Preview extends BaseCommand<typeof Preview> {
3 static args: {
4 file: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
5 };
6 static description: string;
7 static examples: string[];
8 static flags: {
9 live: import("@oclif/core/interfaces").BooleanFlag<boolean>;
10 open: import("@oclif/core/interfaces").BooleanFlag<boolean>;
11 };
12 run(): Promise<void>;
13 private preview;
14 private waitForChanges;
15}