mirror of https://github.com/pulumi/pulumi.git
10 lines
549 B
Cheetah
10 lines
549 B
Cheetah
{{ define "param_separator" }}<span class="p">, </span>{{ end }}
|
|
|
|
{{ define "go_formal_param" }}<span class="nx">{{ .Name }}</span> {{ .OptionalFlag }}{{ template "linkify_param" .Type }}{{ end }}
|
|
|
|
{{ define "ts_formal_param" }}<span class="nx">{{ .Name }}</span>{{ .OptionalFlag }}: {{ template "linkify_param" .Type }}{{ end }}
|
|
|
|
{{ define "csharp_formal_param" }}{{ template "linkify_param" .Type }}{{ .OptionalFlag }} <span class="nx">{{ .Name }}{{ .DefaultValue }}{{ end }}
|
|
|
|
{{ define "py_formal_param" }}{{ .Name }}{{ .DefaultValue }}{{ end }}
|