@zendesk/zcli-themes
Version:
zcli theme commands live here
19 lines (18 loc) • 483 B
TypeScript
import { Command } from '@oclif/core';
export default class Import extends Command {
static description: string;
static enableJsonFlag: boolean;
static flags: {
brandId: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>;
};
static args: {
name: string;
required: boolean;
default: string;
}[];
static examples: string[];
static strict: boolean;
run(): Promise<{
themeId: string;
}>;
}