Type alias Account

Account: {
    kind: "Configured";
} & {
    addr: string | null;
    color: string;
    displayName: string | null;
    id: T.U32;
    profileImage: string | null;
} | {
    kind: "Unconfigured";
} & {
    id: T.U32;
}

Generated using TypeDoc