UNPKG

290 BTypeScriptView Raw
1import { Command, flags as Flags } from '@heroku-cli/command';
2export default class Clear extends Command {
3 static description: string;
4 static flags: {
5 app: Flags.IOptionFlag<string>;
6 remote: Flags.IOptionFlag<string | undefined>;
7 };
8 run(): Promise<void>;
9}