forked from gronod/squeezelite-esp32
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
export class BuildEventsHook {
|
|
constructor(name: any, fn: any, stage?: string);
|
|
name: any;
|
|
stage: string;
|
|
function: any;
|
|
apply(compiler: any): void;
|
|
}
|
|
export function createBuildEventsHook(options: any): BuildEventsHook;
|