UNPKG

@kinde-oss/kinde-node-express

Version:

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

12 lines (11 loc) 392 B
import type { Request, Response, NextFunction } from 'express'; /** * Function uses internal SDK to return registration url with the `is_create_org` * query param set to true. * * @param {Request} req * @param {Response} res * @param {NextFunction} next * @returns {Promise<void>} */ export declare const createOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;