UNPKG

@kinde-oss/kinde-node-express

Version:

Kinde SDK for traditional Node.js Express web apps that run on the server

16 lines (15 loc) 505 B
import { GrantType } from './index.js'; import { default as express } from 'express'; export declare const mockClientConfig: { clientId: string; secret: string; grantType: GrantType; issuerBaseUrl: string; siteUrl: string; unAuthorisedUrl: string; redirectUrl: string; postLogoutRedirectUrl: string; scope: string; }; export declare const getMockAuthURL: (paramOverrides?: {}) => URL; export declare const setupKindeMock: (configOverrides?: {}) => express.Application;