UNPKG

@joker.front/cli

Version:

The Next-Generation Front-End Toolchain: Swift, Efficient, and Adaptive.

10 lines (9 loc) 244 B
export interface HotModule { id: string; callbacks: HotCallBack[]; } export interface HotCallBack { deps: string[]; fn: (modules: Array<ModuleNamespace | undefined>) => void; } export type ModuleNamespace = Record<string, any>;