(query: string, ...bindings: any[])
| 3110 | }; |
| 3111 | interface SqlStorage { |
| 3112 | exec<T extends Record<string, SqlStorageValue>>(query: string, ...bindings: any[]): SqlStorageCursor<T>; |
| 3113 | get databaseSize(): number; |
| 3114 | Cursor: typeof SqlStorageCursor; |
| 3115 | Statement: typeof SqlStorageStatement; |
no outgoing calls