UNPKG

gun

Version:

A realtime, decentralized, offline-first, graph data synchronization engine.

18 lines (15 loc) 387 B
import { GunValueSimple, IGunChain, IGunInstanceRoot } from '.'; interface IGunSchema { [key: string]: | Exclude< IGunSchema, IGunChain<any, any, any, any> | IGunInstanceRoot<any, any> > | GunValueSimple; } export type GunSchema = | Exclude< IGunSchema, IGunChain<any, any, any, any> | IGunInstanceRoot<any, any> > | GunValueSimple;