(span: any, cursor: any)
| 34 | Db: any; |
| 35 | |
| 36 | hookCursorMaybe(span: any, cursor: any): boolean { |
| 37 | if (!(cursor instanceof this.Cursor)) return false; |
| 38 | |
| 39 | wrapEmit(span, cursor, true, 'close'); |
| 40 | |
| 41 | return true; |
| 42 | } |
| 43 | |
| 44 | install(installer: PluginInstaller): void { |
| 45 | const plugin = this; |
no test coverage detected