gun
Version:
A realtime, decentralized, offline-first, graph data synchronization engine.
10 lines (8 loc) • 307 B
TypeScript
import { GunHookCallbackAuth } from '..';
import {} from '../gun/IGunInstanceHookHandler';
declare module '../gun/IGunInstanceHookHandler' {
export interface IGunInstanceHookHandler {
/** Called upon successful user authentication */
on(event: 'auth', callback: GunHookCallbackAuth): void;
}
}