UNPKG

@picturelink/barrelsby

Version:

Automatic TypeScript barrels for your entire code base

24 lines (21 loc) 554 B
export type LocationOption = "top" | "below" | "all" | "replace" | "branch"; export type StructureOption = "flat" | "filesystem"; // Options provided by yargs. export interface Arguments { baseUrl?: string; config?: string; directory?: string[]; delete?: boolean; exclude?: string[]; exportDefault?: boolean; help?: boolean; include?: string[]; local?: boolean; location?: LocationOption; name?: string; noSemicolon?: boolean; singleQuotes?: boolean; structure?: StructureOption; version?: boolean; verbose?: boolean; }