UNPKG

fuse-box

Version:

Fuse-Box a bundler that does it right

11 lines (10 loc) 279 B
export interface SparkyFilePattern { isGlob: boolean; root: string; glob: string; filepath: string; } export interface SparkyFilePatternOptions { base?: string; } export declare function parse(str: string, opts?: SparkyFilePatternOptions): SparkyFilePattern;