import * as ansi from './all.ts'
export * from './all.ts'

/** A type for all the applier generator methods */
export type ANSIFactory = 'style' | 'color' | 'backgroundColor'

/** A type for all the available styles, colours, and background colors */
export type ANSIApplier = Exclude<keyof typeof ansi, ANSIFactory>
