Skip to content

Commit ca0c02d

Browse files
Added plottable example
1 parent 39897f4 commit ca0c02d

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
/etc/
1010
/examples/*/doc
1111
/examples/definitely-typed/src/
12+
/examples/plottable/src/
1213
/node_modules/
1314
/typescript/

examples/plottable/run

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
@echo off
2+
set curr_dir=%cd%
3+
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

Comments
 (0)