Table of Contents

Class TsParameter

Namespace
TypedRest.CodeGeneration.TypeScript.Model
Assembly
TypedRest.CodeGeneration.TypeScript.dll

A parameter of a TsConstructor.

public sealed class TsParameter
Inheritance
object
TsParameter

Constructors

TsParameter(string, TsIdentifier)

A parameter of a TsConstructor.

public TsParameter(string name, TsIdentifier type)

Parameters

name string

The name of the parameter.

type TsIdentifier

The type of the parameter.

Properties

Name

The name of the parameter.

public string Name { get; }

Property Value

string

Type

The type of the parameter.

public TsIdentifier Type { get; }

Property Value

TsIdentifier