()
| 2406 | interface SqlStorage { |
| 2407 | exec<T extends Record<string, SqlStorageValue>>(query: string, ...bindings: any[]): SqlStorageCursor<T>; |
| 2408 | get databaseSize(): number; |
| 2409 | Cursor: typeof SqlStorageCursor; |
| 2410 | Statement: typeof SqlStorageStatement; |
| 2411 | } |
nothing calls this directly
no outgoing calls
no test coverage detected