UNPKG

360 BTypeScriptView Raw
1import { Identity, IdentityProvider } from "./Identity";
2/**
3 * @public
4 */
5export interface LoginIdentity extends Identity {
6 /**
7 * Identity username
8 */
9 readonly username: string;
10 /**
11 * Identity password
12 */
13 readonly password: string;
14}
15/**
16 * @public
17 */
18export type LoginIdentityProvider = IdentityProvider<LoginIdentity>;