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>
22 lines
343 B
TypeScript
22 lines
343 B
TypeScript
import { ISEA } from './types/sea/ISEA';
|
|
|
|
import {} from './types/sea/ISEA';
|
|
declare module './types/sea/ISEA' {
|
|
export interface ISEA {
|
|
window: Window
|
|
}
|
|
}
|
|
|
|
import {} from './types/gun/IGun';
|
|
declare module './types/gun/IGun' {
|
|
export interface IGun {
|
|
SEA: ISEA;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
SEA: ISEA;
|
|
}
|
|
}
|