UNPKG

nralcm

Version:

This is a framework based on NodeJs to manage rest api request lifecycle

14 lines (13 loc) 239 B
/** * Model to store Params in meta data of controller object */ export interface ParamData { /** * Name of Param */ paramName: string; /** * Value of Param */ paramValue: string | number | boolean; }