swc/bundler/tests/.cache/deno/352c70741cbe4aba4892e0c846f3704f8c3f6f5d.ts
강동윤 1178686a4c
fix(bundler): Fix bundler (#1576)
swc_bundler:
 - Fix remapping of exports. (denoland/deno#9350)
2021-04-16 18:09:38 +00:00

13 lines
391 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/types/type.ts
import { IFlagArgument, IFlagOptions } from '../../flags/lib/types.ts';
import { Command } from '../lib/command.ts';
export abstract class Type<T> {
public abstract parse( option: IFlagOptions, arg: IFlagArgument, value: string ): T
public complete?( cmd: Command, parent?: Command ): string[];
}