From 0d533c5d9d732f2f9bf7f387ae4881ddbeb104e1 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 21 Mar 2021 20:27:33 -0500 Subject: [PATCH] Export default classes --- src/index.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/index.ts b/src/index.ts index 6415f16..8bc4fa8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,13 @@ export * from './Directive' +export * from './Template' export * from './service/CommandLineApplication' export * from './service/CommandLine' + +export * from './directive/options/CLIOption' +export * from './directive/options/FlagOption' +export * from './directive/options/PositionalOption' + +export * from './directive/ShellDirective' +export * from './directive/TemplateDirective' +export * from './directive/UsageDirective'