swc/crates/swc_bundler/tests/.cache/deno/d82595c13ee7ea0dfd43ec538522e980707b8a74.ts

14 lines
437 B
TypeScript
Raw Normal View History

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/command/types/string.ts
import { IFlagArgument, IFlagOptions } from '../../flags/lib/types.ts';
import { string } from '../../flags/lib/types/string.ts';
import { Type } from './type.ts';
export class StringType extends Type<string> {
public parse( option: IFlagOptions, arg: IFlagArgument, value: string ): string {
return string( option, arg, value );
}
}