(...params: any[])
| 13 | export interface SqliteStatement { |
| 14 | run(...params: any[]): { changes: number; lastInsertRowid: number | bigint }; |
| 15 | get(...params: any[]): any; |
| 16 | all(...params: any[]): any[]; |
| 17 | /** |
| 18 | * Lazily yield result rows one at a time instead of materializing the whole |
no outgoing calls