UNPKG

@worldcoin/idkit-standalone

Version:

The identity SDK. Privacy-preserving identity and proof of personhood with World ID.

16 lines (14 loc) 350 B
import { Config } from '@worldcoin/idkit'; declare const IDKit: { init: (config: Config) => void; update: (config: Config) => void; open: () => Promise<unknown>; close: () => Promise<unknown>; reset: () => void; readonly isInitialized: boolean; }; declare global { interface Window { IDKit: typeof IDKit; } }