| 22 | import OptionMethods from './OptionMethods'; |
| 23 | |
| 24 | export default interface SwPlugin extends OptionMethods { |
| 25 | readonly module: string; |
| 26 | readonly versions: string; |
| 27 | readonly isBuiltIn?: boolean; |
| 28 | |
| 29 | install(installer: PluginInstaller): void; |
| 30 | } |
| 31 | |
| 32 | export const wrapEmit = (span: Span, ee: any, doError: boolean = true, stop: any = NaN) => { |
| 33 | // stop = NaN because NaN !== NaN |
no outgoing calls
no test coverage detected