UNPKG

parsec-sdk

Version:

UNOFFICIAL and WIP JavaScript/TypeScript SDK for Parsec remote desktop.

12 lines (11 loc) 296 B
/** * Representation of the _personal_ authentication credentials/request body */ export interface AuthPersonalCredentials { /** Parsec account's email address */ email: string; /** Parsec account's password */ password: string; /** Optional TFA code */ tfa?: string; }