UNPKG

@tsed/common

Version:
11 lines (10 loc) 290 B
import { Type } from "@tsed/core"; import { ParamTypes } from "../models/ParamTypes"; export interface IParamOptions<T> { expression?: string; useType?: Type<T>; useConverter?: boolean; useValidation?: boolean; paramType?: ParamTypes | string; [key: string]: any; }