@suluk/better-auth - v0.2.0
    Preparing search index...

    Interface DevLoginAuthLike

    The Better Auth surface this needs — its public signUpEmail/signInEmail server endpoints. Duck-typed.

    interface DevLoginAuthLike {
        api: {
            signUpEmail(
                input: { body: { email: string; password: string; name: string } },
            ): Promise<unknown>;
            signInEmail(
                input: { body: { email: string; password: string }; asResponse: true },
            ): Promise<Response>;
        };
    }
    Index

    Properties

    Properties

    api: {
        signUpEmail(
            input: { body: { email: string; password: string; name: string } },
        ): Promise<unknown>;
        signInEmail(
            input: { body: { email: string; password: string }; asResponse: true },
        ): Promise<Response>;
    }