update tests and README

This commit is contained in:
2017-05-13 11:03:24 +02:00
parent d312d6ae5a
commit 5f0ddc6600
9 changed files with 322 additions and 35 deletions

1
test/assets/moduleExample.d.ts vendored Normal file
View File

@ -0,0 +1 @@
export declare let exportedTestBoolean: boolean;

View File

@ -0,0 +1,4 @@
"use strict";
exports.exportedTestBoolean = true;
console.log('moduleExample loaded successfully');
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibW9kdWxlRXhhbXBsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIm1vZHVsZUV4YW1wbGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFXLFFBQUEsbUJBQW1CLEdBQUcsSUFBSSxDQUFBO0FBRXJDLE9BQU8sQ0FBQyxHQUFHLENBQUMsbUNBQW1DLENBQUMsQ0FBQSJ9

View File

@ -0,0 +1,3 @@
export let exportedTestBoolean = true
import * as q from 'q'
console.log('moduleExample loaded successfully')