@zendesk/zcli-themes
Version:
zcli theme commands live here
23 lines (22 loc) • 839 B
TypeScript
import { Command } from '@oclif/core';
export default class Preview extends Command {
static description: string;
static flags: {
bind: import("@oclif/core/lib/interfaces").OptionFlag<string>;
port: import("@oclif/core/lib/interfaces").OptionFlag<number>;
logs: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
livereload: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
'https-cert': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
'https-key': import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
};
static args: {
name: string;
required: boolean;
default: string;
}[];
static examples: string[];
static strict: boolean;
run(): Promise<{
close: () => void;
}>;
}