mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
11 lines
387 B
TypeScript
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;
|