import { VIEW_LAYOUT } from "../types/constants"; export function layout(layout: T) { return (target: any, key: string, descriptor: PropertyDescriptor) => { Reflect.defineMetadata(VIEW_LAYOUT, layout, target, key); }; }