mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
1178686a4c
swc_bundler: - Fix remapping of exports. (denoland/deno#9350)
13 lines
391 B
TypeScript
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[];
|
|
}
|