(query: string, ...bindings: any[])
| 2388 | }; |
| 2389 | interface SqlStorage { |
| 2390 | exec<T extends Record<string, SqlStorageValue>>(query: string, ...bindings: any[]): SqlStorageCursor<T>; |
| 2391 | get databaseSize(): number; |
| 2392 | Cursor: typeof SqlStorageCursor; |
| 2393 | Statement: typeof SqlStorageStatement; |