Adding index.ts for bundling request and type
All checks were successful
the build was successful

This commit is contained in:
Fabian Stamm
2018-05-19 16:59:44 +02:00
parent 23c27c3c4f
commit e8dcf31461
5 changed files with 17 additions and 3 deletions

4
src/index.ts Normal file
View File

@ -0,0 +1,4 @@
import * as Types from "./types";
import * as Request from "./request"
export = Object.assign({}, Types, Request);