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

10 lines
300 B
TypeScript

// Loaded from https://deno.land/x/cliffy@v0.12.1/packages/flags/lib/types/string.ts
import { IFlagArgument, IFlagOptions, ITypeHandler } from '../types.ts';
export const string: ITypeHandler<string> = ( option: IFlagOptions, arg: IFlagArgument, value: string ): string => {
return value;
};