ionitron.d.ts 313 B

123456
  1. import { CommandLineInputs, CommandLineOptions, CommandMetadata } from '../definitions';
  2. import { Command } from '../lib/command';
  3. export declare class IonitronCommand extends Command {
  4. getMetadata(): Promise<CommandMetadata>;
  5. run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  6. }