UNPKG

@module-federation/typescript

Version:

Webpack plugin to stream typescript for module federation apps/components

8 lines (7 loc) 277 B
import { Compilation } from 'webpack'; export type LoggerInstance = Compilation['logger'] | Console; export declare class Logger { private static loggerInstance; static getLogger(): LoggerInstance; static setLogger(logger: Compilation['logger']): LoggerInstance; }