UNPKG

257 BTypeScriptView Raw
1import { Command } from '@heroku-cli/command';
2export default class Info extends Command {
3 static description: string;
4 static args: {
5 name: string;
6 required: boolean;
7 description: string;
8 }[];
9 run(): Promise<void>;
10}