Skip to content

Commit

Permalink
fix: export CustomOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Aug 31, 2023
1 parent e176286 commit dcb264b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
export {AlphabetLowercase, AlphabetUppercase} from './alphabet'
export {Config, ArchTypes, PlatformTypes, LoadOptions, VersionDetails, PluginVersionDetail} from './config'
export {OclifError, PrettyPrintableError, CommandError} from './errors'
export {HelpOptions} from './help'
export {Hook, Hooks} from './hooks'
export {Manifest} from './manifest'
export {S3Manifest} from './s3-manifest'
export {BooleanFlag, Flag, OptionFlag, Deprecation} from './parser'
export {PJSON} from './pjson'
export {Plugin, PluginOptions, Options} from './plugin'
export {Topic} from './topic'
export {TSConfig} from './ts-config'
export {InferredFlags} from './flags'
export {InferredArgs} from './args'
export type {AlphabetLowercase, AlphabetUppercase} from './alphabet'
export type {Config, ArchTypes, PlatformTypes, LoadOptions, VersionDetails, PluginVersionDetail} from './config'
export type {OclifError, PrettyPrintableError, CommandError} from './errors'
export type {HelpOptions} from './help'
export type {Hook, Hooks} from './hooks'
export type {Manifest} from './manifest'
export type {S3Manifest} from './s3-manifest'
export type {Arg, BooleanFlag, Flag, OptionFlag, Deprecation, CustomOptions} from './parser'
export type {PJSON} from './pjson'
export type {Plugin, PluginOptions, Options} from './plugin'
export type {Topic} from './topic'
export type {TSConfig} from './ts-config'
export type {InferredFlags} from './flags'
export type {InferredArgs} from './args'

0 comments on commit dcb264b

Please sign in to comment.