UNPKG

@tsed/schema

Version:
16 lines (15 loc) 307 B
import { JsonEntityFn } from "./jsonEntityFn.js"; /** * Allow to forward group on specific property. * * @decorator * @validation * @swagger * @schema * @input */ export function ForwardGroups(bool = true) { return JsonEntityFn((entity) => { entity.schema.forwardGroups(bool); }); }