This means that we can now run just the d.ts file generation by running: ```bash gulp docs/typings ``` In addition the type definition generation was messing with the other docs tasks so separating it also fixes problems there.
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% include "lib/paramList.html" -%}
 | 
						|
{% include "lib/githubLinks.html" -%}
 | 
						|
{% extends 'layout/base.template.html' -%}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
<h1 class="class export">{$ doc.name $} <span class="type">{$ doc.docType $}</span></h1>
 | 
						|
<p class="module">exported from {@link {$ doc.moduleDoc.id $} {$doc.moduleDoc.id $} }<br/>
 | 
						|
defined in {$ githubViewLink(doc) $}
 | 
						|
</p>
 | 
						|
<p>{$ doc.description | marked $}</p>
 | 
						|
 | 
						|
{%- if doc.constructorDoc or doc.members.length -%}
 | 
						|
<h2>Members</h2>
 | 
						|
 | 
						|
{%- if doc.constructorDoc %}
 | 
						|
  <section class="member constructor">
 | 
						|
    <h1 id="constructor" class="name">{$ doc.constructorDoc.name $}{$ paramList(doc.constructorDoc.params) $}</h1>
 | 
						|
    {% marked %}
 | 
						|
      {$ doc.constructorDoc.description $}
 | 
						|
    {% endmarked %}
 | 
						|
  </section>
 | 
						|
{% endif -%}
 | 
						|
 | 
						|
{%- for member in doc.members %}{% if not member.private %}
 | 
						|
  <section class="member">
 | 
						|
    <h1 id="{$ member.name $}" class="name">
 | 
						|
      {$ member.name $}{% if member.optional %}?{% endif %}{$ paramList(member.params) $}
 | 
						|
    </h1>
 | 
						|
    {% marked %}
 | 
						|
      {$ member.description $}
 | 
						|
    {% endmarked %}
 | 
						|
  </section>
 | 
						|
 | 
						|
{% endif %}{% endfor %}
 | 
						|
{%- endif -%}
 | 
						|
 | 
						|
{% endblock %} |