Interface TransformParametersOptions

Options or overwrites to the result ParameterObject when transforming.

interface TransformParametersOptions {
    overwriteAll?: TransformParameterOptions;
    overwrites?: {
        [key: string]: TransformParameterOptions;
    };
}

Properties

Options to overwrite to all parameters.

overwrites?: {
    [key: string]: TransformParameterOptions;
}

Overwrite to the corresponding parameter when transforming. Key is the name of the parameter.

Type declaration