@optro/create-trello-powerup
Version:
Easily create Trello Power-Ups from the Command Line
24 lines (23 loc) • 655 B
TypeScript
import { Command } from '@oclif/command';
declare class CreateTrelloPowerup extends Command {
static description: string;
static flags: {
version: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
};
static args: ({
name: string;
required: boolean;
description: string;
default: undefined;
options?: undefined;
} | {
name: string;
required: boolean;
description: string;
default: string;
options: string[];
})[];
run(): Promise<void>;
}
export = CreateTrelloPowerup;