-
Notifications
You must be signed in to change notification settings - Fork 1
/
mod.ts
44 lines (42 loc) · 1.11 KB
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
export { args, isArgs, walkArgs } from "./args.ts";
export { env } from "./env.ts";
export {
flag,
flags,
isFlag,
isFlags,
isGlobalFlag,
walkFlags,
} from "./flags.ts";
export type { Env } from "./env.ts";
export * as fmt from "./fmt.ts";
export * as intl from "./intl.ts";
export { showHelp } from "./help.ts";
export { completion } from "./completion.ts";
export { init } from "./init.ts";
export { config, configUtil } from "./config.ts";
export { kv } from "./kv.ts";
export { locale } from "./locale.ts";
export { version } from "./version.ts";
export { didYouMean } from "./lib/did-you-mean.ts";
export { dedent } from "./lib/dedent.ts";
export type { CommandFactory, inferContext, InitConfig } from "./init.ts";
export type {
Action,
BaseContext,
Command,
CommandConfig,
DefaultContext,
Execute,
} from "./command.ts";
export type { Args, ArgsConfig, ArgTypes } from "./args.ts";
export type {
Flag,
FlagConfig,
Flags,
FlagsShape,
FlagTypes,
} from "./flags.ts";
export type { Config, ConfigOptions } from "./config.ts";
export type { Kv, KvOptions } from "./kv.ts";
export { z } from "./z.ts";