@zendesk/zcli-themes
Version:
zcli theme commands live here
14 lines (13 loc) • 335 B
TypeScript
import { Command } from '@oclif/core';
export default class Migrate extends Command {
static description: string;
static hidden: boolean;
static args: {
name: string;
required: boolean;
default: string;
}[];
static examples: string[];
static strict: boolean;
run(): Promise<void>;
}