mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-06 03:27:01 +03:00
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;
|