Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,8 @@ declare class Database {
* `sqlite3_total_changes64()`, which will trigger an exception if this build
* does not have `BigInt` support enabled.
*/
changes(total?: boolean, sixtyFour?: boolean): number;
changes(total: boolean, sixtyFour: true): bigint;
changes(total?: boolean, sixtyFour?: false): number;

/**
* Returns the filename associated with the given database name. Defaults to
Expand Down