@make-software/csprclick-core-types
Version:
Typescript definitions for CSPR.click core packages
22 lines (21 loc) • 506 B
TypeScript
export type ApplicationData = {
username: string;
avatar_url: string;
};
export type WalletUserAccount = {
uuid: string;
application_id: number;
torus_verifier_id: string;
public_key: string;
has_password: number;
exported: number;
};
export type WalletUser = {
id: number;
uuid: string;
application_data: ApplicationData;
accounts: WalletUserAccount[];
};
export declare enum CsprclickCustomjwtEventTypes {
Connected = "csprclick-customjwt:connected"
}