rainbows
Version:
Outputs a random number (`1 <= n <= 1000`) of 🌈's when you execute the program. (Pretty much useless.)
14 lines (13 loc) • 378 B
TypeScript
import { Command } from '@oclif/command';
declare class Rainbows 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;
}[];
run(): Promise<void>;
}
export = Rainbows;