mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00

* New GUN typings * Fixing comments * Gun schema is now supported Co-authored-by: dbaranov <dbaranov@bellintegrator.com>
15 lines
254 B
TypeScript
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;
|
|
}
|
|
}
|