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