no message

This commit is contained in:
Jan Wolf
2017-04-23 22:39:49 +02:00
parent 8bb580b846
commit ca7130dfb1
4 changed files with 39 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
import * as autosni from "auto-sni";
let a = autosni({
test: 0
});
+10
View File
@@ -0,0 +1,10 @@
// Type definitions for auto-sni v2.1.1
// Project: https://www.npmjs.com/package/auto-sni
// Definitions by: Jan Wolf <https://github.com/janwo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare namespace createServer {
}
declare function createServer(opts: any, app?: any): any;
export = createServer;
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"auto-sni-tests.ts"
]
}
+3
View File
@@ -0,0 +1,3 @@
{
"extends": "dtslint/dt.json"
}