6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
|
declare interface NodeModule {
|
||
|
hot?: {
|
||
|
accept: (path: string, callback: () => void) => void;
|
||
|
};
|
||
|
}
|