import { ParamOptions, ParamType } from '../../'; /** * Class-based view param args. */ export interface ParamArgs { /** * Target object to inject param. */ target: string; /** * Name of the variable that will used for param injection. */ key: string; /** * Type of param. */ type: ParamType; /** * Additional options that may be passed to the decorator. */ options?: ParamOptions; }