Merge pull request #31457 from wcarson/original

[original] Add types
This commit is contained in:
Nathan Shively-Sanders
2018-12-18 08:19:15 -08:00
committed by GitHub
4 changed files with 61 additions and 0 deletions

28
types/original/index.d.ts vendored Normal file
View File

@@ -0,0 +1,28 @@
// Type definitions for original 1.0
// Project: https://github.com/unshiftio/original
// Definitions by: Wayne Carson <https://github.com/wcarson>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
/**
* Transform an URL to a valid origin value.
*
* @param url URL to transform to it's origin.
* @returns The origin.
* @api public
*/
declare function origin(url: string | object | { protocol: string, host: string }): string;
declare namespace origin {
/**
* Check if the origins are the same.
*
* @param a URL or origin of a.
* @param b URL or origin of b.
* @returns true if origins are the same, false otherwise
* @api public
*/
function same(a: string, b: string): boolean;
}
export = origin;

View File

@@ -0,0 +1,7 @@
import origin = require('original');
// $ExpectType string
origin('https://google.com/gmail');
// $ExpectType boolean
origin.same('https://google.com/gmail', 'https://google.com:443/gmail');

View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"original-tests.ts"
]
}

View File

@@ -0,0 +1,3 @@
{
"extends": "dtslint/dt.json"
}