supertokens-node
    Preparing search index...

    Type Alias APIInterface

    type APIInterface = {
        getJWKSGET:
            | undefined
            | (
                (
                    input: { options: APIOptions; userContext: UserContext },
                ) => Promise<{ keys: JsonWebKey[] } | GeneralErrorResponse>
            );
    }
    Index

    Properties

    Properties

    getJWKSGET:
        | undefined
        | (
            (
                input: { options: APIOptions; userContext: UserContext },
            ) => Promise<{ keys: JsonWebKey[] } | GeneralErrorResponse>
        )