Comparing version 3.2.0-rc.2 to 3.2.0-rc.3
@@ -7,3 +7,3 @@ /* | ||
* | ||
* Version 3.2.0-rc.2, Wed Sep 29 2021 | ||
* Version 3.2.0-rc.3, Thu Oct 28 2021 | ||
* | ||
@@ -14,3 +14,3 @@ * http://dexie.org | ||
*/ | ||
// Generated by dts-bundle-generator v5.7.0 | ||
// Generated by dts-bundle-generator v5.9.0 | ||
@@ -576,3 +576,2 @@ export interface IndexSpec { | ||
// Utility methods | ||
cmp(a: any, b: any): number; | ||
readonly MIN_KEY: any; | ||
@@ -932,5 +931,11 @@ readonly MAX_KEY: any; | ||
} | ||
declare global { | ||
interface SymbolConstructor { | ||
readonly observable: symbol; | ||
} | ||
} | ||
export interface Observable<T = any> { | ||
subscribe(onNext?: ((value: T) => void) | null, onError?: ((error: any) => void) | null, onComplete?: (() => void) | null): Subscription; | ||
subscribe(observer?: Observer<T> | null): Subscription; | ||
[Symbol.observable]: () => Observable<T>; | ||
} | ||
@@ -937,0 +942,0 @@ export interface Subscription { |
{ | ||
"name": "dexie", | ||
"version": "3.2.0-rc.2", | ||
"version": "3.2.0-rc.3", | ||
"description": "A Minimalistic Wrapper for IndexedDB", | ||
@@ -62,3 +62,3 @@ "main": "dist/dexie.js", | ||
"node ../tools/replaceVersionAndDate.js ../dist/modern/dexie.mjs", | ||
"dts-bundle-generator --inline-declare-externals -o ../dist/dexie.d.ts public/index.d.ts", | ||
"dts-bundle-generator --inline-declare-global --inline-declare-externals -o ../dist/dexie.d.ts public/index.d.ts", | ||
"node ../tools/prepend.js ../dist/dexie.d.ts ../tools/build-configs/banner.txt", | ||
@@ -98,3 +98,3 @@ "node ../tools/replaceVersionAndDate.js ../dist/dexie.d.ts" | ||
"devDependencies": { | ||
"dts-bundle-generator": "^5.7.0", | ||
"dts-bundle-generator": "^5.9.0", | ||
"just-build": "^0.9.19", | ||
@@ -101,0 +101,0 @@ "karma": "^6.1.1", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2562748
16227