mirror of
https://github.com/amark/gun.git
synced 2025-05-19 13:26:48 +00:00

* New GUN typings * Fixing comments * Gun schema is now supported Co-authored-by: dbaranov <dbaranov@bellintegrator.com>
12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
import {} from './radix'
|
|
declare module './radix' {
|
|
export const Radix: IRadix;
|
|
export interface IRadix {}
|
|
}
|
|
|
|
declare global {
|
|
interface Window {
|
|
Radix: IRadix;
|
|
}
|
|
}
|