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