--- <@ include "lib/yaml.template.html" @> title: "<@ if doc.docType == "directive" @><$ doc.name | dashCase $><@ else @><$ doc.name $><@ endif @>" header_sub_title: "<$ doc.docType $> in module <$ doc.module $>" doc: "<$ doc.name $>" docType: "<$ doc.docType $>" --- <@ macro paramList(paramData) -@> <@- if paramData -@>( <@- for param in paramData -@> <$ param | escape $><@ if not loop.last @>, <@ endif @> <@- endfor @>) <@- endif @> <@- endmacro -@> <@ macro githubViewLink(doc) -@> <$ doc.fileInfo.relativePath $> (line <$ doc.location.start.line+1 $>) <@- endmacro -@> <@ block body @>
View Source   Improve this doc
<@ block content @> <@ block header @>

<@ if doc.docType == "directive" @> <$ doc.name | dashCase $> <@ else @> <$ doc.name $> <@ endif @> <@ if doc.parent @>
Child of <$ doc.parent $> <@ endif @> <@ if doc.delegate @>
Delegate: <$ doc.delegate $> <@ endif @>

<@ if doc.codepen @> {% include codepen.html id="<$ doc.codepen $>" %} <@ endif @> <@ endblock @> <@ block description @> <$ doc.description $> <@ endblock @>

<$ doc.name $> <$ doc.docType $>

exported from {@link <$ doc.moduleDoc.id $> <$doc.moduleDoc.id $> }
defined in <$ githubViewLink(doc) $>

<$ doc.description | marked $>

<@- if doc.decorators @>

Annotations

<@- for decorator in doc.decorators @>

@<$ decorator.name $><$ paramList(decorator.arguments) $>

<@ endfor @> <@ endif -@> <@- if doc.constructorDoc or doc.members.length -@>

Members

<@- if doc.constructorDoc @>

<$ doc.constructorDoc.name $><$ paramList(doc.constructorDoc.paramData) $>

<@ marked @> <$ doc.constructorDoc.description $> <@ endmarked @>
<@ endif -@> <@- for member in doc.members @><@ if not member.private @>

<$ member.name $><@ if member.optional @>?<@ endif @><$ paramList(member.params) $>

<@ marked @> <$ member.description $> <@ endmarked @>
<@ endif @><@ endfor @> <@- endif -@> <@ endblock @> <@ endblock @>