UNPKG

@replyke/express

Version:

Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.

27 lines (26 loc) 562 B
import { Literal } from "sequelize/types/utils"; import { User } from "../models"; export declare const commentParams: { attributes: { include: [Literal, string][]; }; include: { model: typeof User; as: string; attributes: { exclude: string[]; }; }[]; }; export declare const entityParams: { attributes: { include: [Literal, string][]; }; include: { model: typeof User; as: string; attributes: { exclude: string[]; }; }[]; };