diff --git a/types/localtunnel/index.d.ts b/types/localtunnel/index.d.ts new file mode 100644 index 0000000000..219075ed31 --- /dev/null +++ b/types/localtunnel/index.d.ts @@ -0,0 +1,44 @@ +// Type definitions for localtunnel v1.9.1 +// Project: https://github.com/vladhrapov/typings +// Definitions by: Vladyslav Khrapov +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare function localtunnel( + port: number, + callback: localtunnel.TunnelCallback +): localtunnel.Tunnel; + +declare function localtunnel( + port: number, + opt: localtunnel.TunnelConfig, + callback: localtunnel.TunnelCallback +): localtunnel.Tunnel; + +declare namespace localtunnel { + export type TunnelCallback = ( + err: string, + tunnel?: localtunnel.Tunnel + ) => void; + + export interface TunnelConfig { + host?: string; + subdomain?: string; + port?: number; + local_host?: string; + } + + export interface Tunnel { + url: string; + tunnel_cluster: TunnelCluster; + open(err: string, tunnel?: localtunnel.Tunnel): void; + close(): void; + } + + export interface TunnelCluster { + domain: string; + } + + const prototype: {}; +} + +export = localtunnel; diff --git a/types/localtunnel/localtunnel-tests.ts b/types/localtunnel/localtunnel-tests.ts new file mode 100644 index 0000000000..9d631c65e1 --- /dev/null +++ b/types/localtunnel/localtunnel-tests.ts @@ -0,0 +1,10 @@ +import localtunnel = require('localtunnel'); + +let tunnel: localtunnel.Tunnel; + +tunnel = localtunnel(3000, () => {}); +tunnel = localtunnel( + 3000, + { host: '', local_host: '', port: 3000, subdomain: '' }, + () => {} +); diff --git a/types/localtunnel/tsconfig.json b/types/localtunnel/tsconfig.json new file mode 100644 index 0000000000..d963a5e873 --- /dev/null +++ b/types/localtunnel/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "localtunnel-tests.ts" + ] +} diff --git a/types/localtunnel/tslint.json b/types/localtunnel/tslint.json new file mode 100644 index 0000000000..3db14f85ea --- /dev/null +++ b/types/localtunnel/tslint.json @@ -0,0 +1 @@ +{ "extends": "dtslint/dt.json" }