swc/bundler/tests/.cache/deno/3678092871664d8c241c90a551036889ee7b660a.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

11 lines
387 B
TypeScript

// Loaded from https://deno.land/x/args@1.0.7/symbols.ts
/** Value of `tag` when argv is a complete and list of valid options */
export const MAIN_COMMAND = Symbol("MAIN_COMMAND");
export type MAIN_COMMAND = typeof MAIN_COMMAND;
/** Value of `tag` when argv is failed to parse */
export const PARSE_FAILURE = Symbol("PARSE_FAILURE");
export type PARSE_FAILURE = typeof PARSE_FAILURE;