Home > @plasmicapp/auth-api > PlasmicUserResult

PlasmicUserResult type

Signature:

export type PlasmicUserResult = {
    user: null;
    token: null;
    error: Error;
} | {
    user: PlasmicUser;
    token: string;
    error?: never;
};

References: PlasmicUser