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.
15 lines (14 loc) • 578 B
TypeScript
import { IOptions, TExtendedApi } from './types';
export declare class MixApiManager {
private _mixGlob;
private _extendedApi?;
constructor(options: IOptions);
/**
* A method that construct the extended api and return it
* The extended api. Support and keep the same api.
* With extra support to the Glob and OutConfig objects. That allow the glob processing.
* If those objects are not passed then it will works just if MixGlob extension isn't applied
* @returns TExtendedApi
*/
getExtendedApi(): TExtendedApi;
}