| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  | {% import "lib/githubLinks.html" as github -%} | 
					
						
							|  |  |  | {% import "lib/paramList.html" as params -%} | 
					
						
							| 
									
										
										
										
											2016-09-08 13:31:52 -07:00
										 |  |  | {% extends 'layout/base.template.html' -%} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block body %} | 
					
						
							|  |  |  | include {$ relativePath(doc.path, '_util-fns') $} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% include "layout/_what-it-does.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% include "layout/_security-notes.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% include "layout/_deprecated-notes.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% include "layout/_how-to-use.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | div(layout="row" layout-xs="column" class="ng-cloak") | 
					
						
							|  |  |  |   div(flex="20" flex-xs="100") | 
					
						
							|  |  |  |     h2(class="h2-api-docs") Interface Overview | 
					
						
							|  |  |  |   div(flex="80" flex-xs="100") | 
					
						
							|  |  |  |     code(class="no-bg api-doc-code openParens") interface {$ doc.name $} { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {% if doc.members.length %} | 
					
						
							|  |  |  |     div(layout="column") | 
					
						
							|  |  |  |       {% for member in doc.members %}{% if not member.internal %} | 
					
						
							|  |  |  |         pre(class="prettyprint no-bg-with-indent") | 
					
						
							|  |  |  |           a(class="code-anchor" href="#{$ member.name $}-anchor") | 
					
						
							|  |  |  |             code(class="code-background api-doc-code") {$ member.name | indent(6, false) | trim $} | 
					
						
							| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  |           code(class="api-doc-code") {$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} | 
					
						
							| 
									
										
										
										
											2016-09-08 13:31:52 -07:00
										 |  |  |       {% endif %}{% endfor %} | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |     p(class="selector endParens") | 
					
						
							|  |  |  |       code(class="api-doc-code no-bg") } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block additional %} | 
					
						
							|  |  |  | {% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | div(layout="row" layout-xs="column" class="row-margin ng-cloak") | 
					
						
							|  |  |  |   div(flex="20" flex-xs="100") | 
					
						
							|  |  |  |     h2(class="h2-api-docs") Interface Description | 
					
						
							|  |  |  |   div(class="code-links" flex="80" flex-xs="100") | 
					
						
							|  |  |  |     :marked | 
					
						
							|  |  |  |     {%- if doc.description.length > 2 %} | 
					
						
							|  |  |  | {$ doc.description | indentForMarkdown(6) | trimBlankLines $} | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% if doc.members.length %} | 
					
						
							|  |  |  | div(layout="row" layout-xs="column" class="instance-members" class="row-margin ng-cloak") | 
					
						
							|  |  |  |   div(flex="20" flex-xs="100") | 
					
						
							|  |  |  |     h2(class="h2-api-docs") Interface Details | 
					
						
							|  |  |  |   div(class="code-links" flex="80" flex-xs="100") | 
					
						
							|  |  |  |     {% for member in doc.members %}{% if not member.internal %} | 
					
						
							|  |  |  |     a(name="{$ member.name $}-anchor" class="anchor-offset") | 
					
						
							|  |  |  |     pre(class="prettyprint no-bg" ng-class="{ 'anchor-focused': appCtrl.isApiDocMemberFocused('{$ member.name $}') }") | 
					
						
							|  |  |  |       code(class="api-doc-code"). | 
					
						
							| 
									
										
										
										
											2016-09-09 12:47:20 +01:00
										 |  |  |         {$ member.name $}{$ params.paramList(member.parameters) | indent(8, false) | trim $}{$ params.returnType(member.returnType) $} | 
					
						
							| 
									
										
										
										
											2016-09-08 13:31:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     :marked | 
					
						
							|  |  |  |       {%- if not member.notYetDocumented %} | 
					
						
							|  |  |  | {$ member.description | indentForMarkdown(6) | replace('### Example', '') | replace('## Example', '') | replace('# Example', '') | trimBlankLines $} | 
					
						
							|  |  |  |       {% endif -%} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     {% if not loop.last %} | 
					
						
							|  |  |  |     .hr(class="hr-margin") | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   {% endif %}{% endfor %} | 
					
						
							|  |  |  | {% endif %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | p(class="location-badge"). | 
					
						
							|  |  |  |   exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }, | 
					
						
							| 
									
										
										
										
											2016-09-14 07:50:02 +01:00
										 |  |  |   defined in {$ github.githubViewLink(doc, versionInfo) $} | 
					
						
							| 
									
										
										
										
											2016-09-08 13:31:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | {% endblock %} |