UNPKG

@lightninglabs/lnc-web

Version:

Lightning Node Connect npm module for web

21 lines 479 B
export interface SessionCredentials { localKey: string; remoteKey: string; pairingPhrase: string; serverHost: string; } export interface WrappedKey { keyB64: string; ivB64: string; } export interface SessionData { sessionId: string; createdAt: number; expiresAt: number; refreshCount: number; encryptedCredentials: string; credentialsIV: string; device: WrappedKey; origin: WrappedKey; } //# sourceMappingURL=types.d.ts.map