UNPKG

@simulacrum/auth0-simulator

Version:

Run local instance of Auth0 API for local development and integration testing

10 lines 466 B
import type { QueryParams } from "../types.ts"; export type UserNamePasswordForm = { auth0Domain?: string; audience?: string; connection?: string; response_type?: string; tenant: string; } & Partial<QueryParams>; export declare const userNamePasswordForm: ({ auth0Domain, redirect_uri, state, nonce, client_id, scope, audience, connection, response_type, tenant, }: UserNamePasswordForm) => string; //# sourceMappingURL=username-password.d.ts.map