Initial JavaScript bindings with napi-rs

This commit is contained in:
Pekka Enberg 2025-01-20 11:11:43 +02:00
parent 79620946c1
commit 9ef729f81c
22 changed files with 4093 additions and 151 deletions

13
bindings/javascript/index.d.ts vendored Normal file
View file

@ -0,0 +1,13 @@
/* tslint:disable */
/* eslint-disable */
/* auto-generated by NAPI-RS */
export declare class Database {
memory: boolean
constructor(path: string)
prepare(sql: string): Statement
}
export declare class Statement {
get(): NapiResult
}