laravel-mix-glob
Version:
Laravel mix extension that add support for globs usage with an extensive concise api. For a more natural boosted productivity and dynamic. Configure once and forget about adding the files each time.
18 lines (17 loc) • 481 B
TypeScript
import { IGlobObj } from './globResolve/types';
import { IOptions, TGlobOptions, TGlobValue } from './types';
export declare enum EGlobType {
src = 1,
array = 2,
arg = 3,
args = 4
}
export declare class Glob<T extends EGlobType = EGlobType> {
value: TGlobValue;
options: TGlobOptions<T> | undefined;
type: T;
constructor(options: IOptions<T>);
isGlobValueAnObject(this: Glob): this is Glob & {
value: IGlobObj;
};
}