import { IJsonable } from "./IJsonable"; import { Primitive } from "./Primitive"; import { ValueOf } from "./ValueOf"; export type Parametric = { [P in keyof Arguments]: ParametricValue; }; /** * @hidden */ type ParametricValue = | ValueOf | Primitive | IJsonable>;