@qelos/auth
Version:
Express Passport authentication service
5 lines (4 loc) • 312 B
TypeScript
import { Response } from 'express';
import { AuthRequest } from '../../types';
export declare function getInvites(req: AuthRequest, res: Response): Promise<Response<any, Record<string, any>>>;
export declare function respondToInvite(req: AuthRequest, res: Response): Promise<Response<any, Record<string, any>>>;