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.
8 lines (7 loc) • 305 B
TypeScript
import { Api as MixApi } from 'laravel-mix';
import type { EGlobType, Glob } from "../../Glob";
interface IProcessArgsResult {
files: string[];
}
export declare function processArgsGlobCall(glob: Glob<EGlobType.args>, originalMethod: (...args: any[]) => MixApi): IProcessArgsResult;
export {};