1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 00:54:14 +02:00

cleanup deps and export d.ts typings

This commit is contained in:
Robin Appelman 2016-12-22 00:10:12 +01:00
commit 8b1ea168e6
3 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,6 @@
"bit-buffer": "icewind1991/bit-buffer#readBitStream", "bit-buffer": "icewind1991/bit-buffer#readBitStream",
"clone": "^2.1.0", "clone": "^2.1.0",
"minimist": "1.1.x", "minimist": "1.1.x",
"smart-buffer": "^1.0.1",
"typedarray-to-buffer": "^3.1.2" "typedarray-to-buffer": "^3.1.2"
}, },
"devDependencies": { "devDependencies": {

View file

@ -28,7 +28,7 @@ export class Demo {
} }
} }
class StreamDemo { export class StreamDemo {
stream: Stream; stream: Stream;
constructor(nodeStream: Stream) { constructor(nodeStream: Stream) {

View file

@ -9,6 +9,7 @@
"target": "ES5", "target": "ES5",
"outDir": "build", "outDir": "build",
"rootDir": "src", "rootDir": "src",
"declaration": true,
"strictNullChecks": true "strictNullChecks": true
} }
} }