UNPKG

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