{{ range .Site.Data.api }} {{ if isset . "type" }}
{{ .name }} : {{ .type }} {{ if (eq .scope "constructor") }}
{{ .scope }}
{{ end }} {{ if (eq .scope "private") }}
{{ .scope }}
{{ end }} {{ if (eq .scope "public") }}
{{ .scope }}
{{ end }}
{{ else }}
{{ .name }} {{ if (eq .scope "constructor") }}
{{ .scope }}
{{ end }} {{ if (eq .scope "private") }}
{{ .scope }}
{{ end }} {{ if (eq .scope "public") }}
{{ .scope }}
{{ end }}
{{ end }} {{ if isset . "description" }}

{{ .description | $.Page.RenderString }}

{{ end }} {{ if isset . "parameters" }}
Parameters
{{ range .parameters }}
{{ .description | $.Page.RenderString }}
{{ end }} {{ end }} {{ if isset . "example" }}
Example
{{ highlight .example "javascript" "" }} {{ end }}
{{ end }}