@replyke/express
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
8 lines (7 loc) • 301 B
TypeScript
import { Request as ExReq, Response as ExRes } from "express";
import IUser from "../../interfaces/IUser";
declare const _default: (req: ExReq, res: ExRes, payload: {
projectId: string;
data: Partial<IUser>;
}) => Promise<ExRes<any, Record<string, any>> | undefined>;
export default _default;