@picturelink/barrelsby
Version:
Automatic TypeScript barrels for your entire code base
21 lines (20 loc) • 570 B
TypeScript
export declare type LocationOption = "top" | "below" | "all" | "replace" | "branch";
export declare type StructureOption = "flat" | "filesystem";
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;
}