UNPKG

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) 394 B
import { Cache } from 'flat-cache'; import type { MetaCache } from './MetaCache'; export interface IOptions { cacheId?: string; cache?: Cache; metaCache?: MetaCache; } export interface IWatchingCacheData { childPids: number[]; } export interface IMetaData { sessions: ISession[]; } export interface ISession { id: string; masterProcessId: number; }