Class TsParameter
- Namespace
- TypedRest.CodeGeneration.TypeScript.Model
- Assembly
- TypedRest.CodeGeneration.TypeScript.dll
A parameter of a TsConstructor.
public sealed class TsParameter
- Inheritance
-
objectTsParameter
Constructors
TsParameter(string, TsIdentifier)
A parameter of a TsConstructor.
public TsParameter(string name, TsIdentifier type)
Parameters
namestringThe name of the parameter.
typeTsIdentifierThe type of the parameter.
Properties
Name
The name of the parameter.
public string Name { get; }
Property Value
Type
The type of the parameter.
public TsIdentifier Type { get; }