(query: string, ...bindings: any[])
| 3080 | }; |
| 3081 | interface SqlStorage { |
| 3082 | exec<T extends Record<string, SqlStorageValue>>(query: string, ...bindings: any[]): SqlStorageCursor<T>; |
| 3083 | get databaseSize(): number; |
| 3084 | Cursor: typeof SqlStorageCursor; |
| 3085 | Statement: typeof SqlStorageStatement; |
no outgoing calls
no test coverage detected