export interface IExportableSymbols { /** files which being exported */ files: string[]; /** directories which have an index.ts in them */ dirs: string[]; /** base directory which search was done in */ base: string; /** * Any VueJS SFC files (aka, files ending in .vue which combine JS,CSS,Styles and result in a * single JS default export when transpiled) */ sfcs: string[]; /** * sub-directories which do have an index file but have explicitly * orphaned themselves */ orphans?: string[]; } export declare enum ExportAction { updated = 0, added = 1, noChange = 2, refactor = 3 } export declare enum ExportType { /** export the default export as the name of the file */ default = "default", /** export all named exports from files and directories (with another index file) */ named = "named", /** export all */ namedOffset = "namedOffset" } export declare type IExportType = keyof typeof ExportType; //# sourceMappingURL=types.d.ts.map