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.
10 lines (9 loc) • 359 B
TypeScript
declare const LOGGER: {
log: (message?: any, ...optionalParams: any[]) => void;
err: (message?: any, ...optionalParams: any[]) => void;
debug: (message?: any, ...optionalParams: any[]) => void;
};
type LoggerType = typeof LOGGER;
declare function settingUpLogging(): void;
export { LOGGER, settingUpLogging };
export type { LoggerType };