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