(query: string, ...bindings: any[])
| 2405 | }; |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected