(input?: {trace?: boolean})
| 9 | private sqlite: Database | undefined = undefined; |
| 10 | private inTransaction = false; |
| 11 | |
| 12 | public constructor(input?: {trace?: boolean}) { |
| 13 | this.trace = input?.trace === true; |
| 14 | } |
| 15 | |
| 16 | public async connect(data?: ArrayLike<number> | Buffer | null) { |
nothing calls this directly
no outgoing calls
no test coverage detected