| 93 | FactoryPromise ; |
| 94 | |
| 95 | interface WebpackModule { |
| 96 | hot: { |
| 97 | data?: any, |
| 98 | idle: any, |
| 99 | accept(dependencies?: string | string[], callback?: (updatedDependencies?: any) => void): void; |
| 100 | decline(deps?: any | string | string[]): void; |
| 101 | dispose(callback?: (data?: any) => void): void; |
| 102 | addDisposeHandler(callback?: (data?: any) => void): void; |
| 103 | removeDisposeHandler(callback?: (data?: any) => void): void; |
| 104 | check(autoApply?: any, callback?: (err?: Error, outdatedModules?: any[]) => void): void; |
| 105 | apply(options?: any, callback?: (err?: Error, outdatedModules?: any[]) => void): void; |
| 106 | status(callback?: (status?: string) => void): void | string; |
| 107 | removeStatusHandler(callback?: (status?: string) => void): void; |
| 108 | }; |
| 109 | } |
| 110 | |
| 111 | |
| 112 | interface WebpackRequire { |
nothing calls this directly
no outgoing calls
no test coverage detected