gun/lib/rindexed.d.ts
Orimay d53d157f19
New GUN typings (#1205)
* New GUN typings

* Fixing comments

* Gun schema is now supported

Co-authored-by: dbaranov <dbaranov@bellintegrator.com>
2022-02-18 23:17:41 -08:00

15 lines
254 B
TypeScript

import {} from './rindexed'
declare module './rindexed' {
export const Store: IRindexedDB;
export interface IRindexedDB {
indexedDB: IRindexedDB;
window: Window;
}
}
declare global {
interface Window {
RindexedDB: IRindexedDB;
}
}