UNPKG

@selfcommunity/types

Version:

Types to integrate a community created with SelfCommunity.

22 lines (21 loc) 398 B
/** * SSOSigninType interface */ export interface SSOSignInType { id: number; ext_id: string | null; username: string; role?: string | null; tags?: number[] | null; } /** * SSOSignupType interface */ export interface SSOSignUpType { id: number; ext_id?: string | null; username: string; email: string; role?: string | null; tags?: number[] | null; }