We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39897f4 commit ca0c02dCopy full SHA for ca0c02d
.gitignore
@@ -9,5 +9,6 @@
9
/etc/
10
/examples/*/doc
11
/examples/definitely-typed/src/
12
+/examples/plottable/src/
13
/node_modules/
14
/typescript/
examples/plottable/run
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
+cd ${0%/*}
3
+node ../../bin/typedoc --mode file --includeDeclarations src/typings/d3/d3.d.ts src/plottable.d.ts --out doc/
examples/plottable/run.bat
@@ -0,0 +1,7 @@
+@echo off
+set curr_dir=%cd%
+chdir /D "%~dp0"
4
+
5
+node ..\..\bin\typedoc --mode file --includeDeclarations src/typings/d3/d3.d.ts src/plottable.d.ts --out doc/
6
7
+chdir /D "%curr_dir%"
0 commit comments