IUserInfo
IUserInfo interface defines the contract for the `UserInfo` class, outlining the methods related to user info.
interface IUserInfo {
backup: (params: BackupUserInfoParams) => Promise<GeneralResponseData>;
retrieve: (params: GeneralParams) => Promise<UserInfoSetting | null>;
delete: (params: GeneralParams) => Promise<GeneralResponseData>;
}
Associated Types
KeyTypesUserInfoTypesAuthServerClientTypesRelated Classes
UserInfoLast updated