Skip to content

Commit

Permalink
chore: build with current TS version
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Jun 8, 2023
1 parent d01db45 commit 9873ba4
Show file tree
Hide file tree
Showing 24 changed files with 49 additions and 55 deletions.
60 changes: 30 additions & 30 deletions dist/CFG.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,37 +44,37 @@ export type ConfigValue = ValueOf<ConfigValues>;
export type KeyofConfigValues = keyof ConfigValues;
export type Config = KeyofConfigValues[];
declare namespace CFG {
const DEBUG: boolean;
const cacheDatabaseInstances: boolean;
const autoName: boolean;
const fullIDLSupport: boolean;
const checkOrigin: boolean;
const cursorPreloadPackSize: number;
const UnicodeIDStart: string;
const UnicodeIDContinue: string;
const registerSCA: (preset: import("typeson").Preset) => import("typeson").Preset;
const avoidAutoShim: boolean;
const win: {
let DEBUG: boolean;
let cacheDatabaseInstances: boolean;
let autoName: boolean;
let fullIDLSupport: boolean;
let checkOrigin: boolean;
let cursorPreloadPackSize: number;
let UnicodeIDStart: string;
let UnicodeIDContinue: string;
let registerSCA: (preset: import("typeson").Preset) => import("typeson").Preset;
let avoidAutoShim: boolean;
let win: {
openDatabase: (name: string, version: string, displayName: string, estimatedSize: number) => any;
};
const DEFAULT_DB_SIZE: number;
const useSQLiteIndexes: boolean;
const fs: FSApi;
const addNonIDBGlobals: boolean;
const replaceNonIDBGlobals: boolean;
const escapeDatabaseName: (name: string) => string;
const unescapeDatabaseName: (name: string) => string;
const databaseCharacterEscapeList: string | false;
const databaseNameLengthLimit: number | false;
const escapeNFDForDatabaseNames: boolean;
const addSQLiteExtension: boolean;
const memoryDatabase: string;
const deleteDatabaseFiles: boolean;
const databaseBasePath: string;
const sysDatabaseBasePath: string;
const sqlBusyTimeout: number;
const sqlTrace: () => void;
const sqlProfile: () => void;
const createIndexes: boolean;
let DEFAULT_DB_SIZE: number;
let useSQLiteIndexes: boolean;
let fs: FSApi;
let addNonIDBGlobals: boolean;
let replaceNonIDBGlobals: boolean;
let escapeDatabaseName: (name: string) => string;
let unescapeDatabaseName: (name: string) => string;
let databaseCharacterEscapeList: string | false;
let databaseNameLengthLimit: number | false;
let escapeNFDForDatabaseNames: boolean;
let addSQLiteExtension: boolean;
let memoryDatabase: string;
let deleteDatabaseFiles: boolean;
let databaseBasePath: string;
let sysDatabaseBasePath: string;
let sqlBusyTimeout: number;
let sqlTrace: () => void;
let sqlProfile: () => void;
let createIndexes: boolean;
}
//# sourceMappingURL=CFG.d.ts.map
2 changes: 1 addition & 1 deletion dist/CFG.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/IDBCursor.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,6 @@ export namespace IDBCursor {
*/
export function IDBCursorWithValue(): void;
export class IDBCursorWithValue {
constructor: typeof IDBCursorWithValue;
}
export namespace IDBCursorWithValue {
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/IDBCursor.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/IDBDatabase.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ declare class IDBDatabase {
* @returns {void}
*/
__forceClose(this: IDBDatabaseFull, msg: string): void;
constructor: typeof IDBDatabase;
}
declare namespace IDBDatabase {
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/IDBDatabase.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions dist/IDBRequest.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export class IDBRequest {
* @returns {import('./IDBTransaction.js').IDBTransactionFull|null|undefined}
*/
__getParent(this: IDBRequestFull): import('./IDBTransaction.js').IDBTransactionFull | null | undefined;
constructor: typeof IDBRequest;
}
export namespace IDBRequest {
/**
Expand Down Expand Up @@ -66,7 +65,6 @@ export namespace IDBRequest {
*/
export function IDBOpenDBRequest(): void;
export class IDBOpenDBRequest {
constructor: typeof IDBOpenDBRequest;
}
export namespace IDBOpenDBRequest {
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/IDBRequest.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion dist/IDBTransaction.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ declare class IDBTransaction {
* @returns {import('./IDBDatabase.js').IDBDatabaseFull}
*/
__getParent(this: IDBTransactionFull): import('./IDBDatabase.js').IDBDatabaseFull;
constructor: typeof IDBTransaction;
}
declare namespace IDBTransaction {
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/IDBTransaction.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9873ba4

Please sign in to comment.