UNPKG

intreface.cli

Version:

Intreface Dev Tools

13 lines (12 loc) 330 B
import { Command, flags } from '@oclif/command'; export default class Bitrix extends Command { static description: string; static args: { name: string; }[]; static flags: { config: flags.IOptionFlag<string | undefined>; }; static examples: string[]; run(): Promise<void>; }