Merge branch 'master' into oja/lodash-is-object-type-guard

This commit is contained in:
Oliver Joseph Ash
2019-03-11 17:18:01 +00:00
18 changed files with 24 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
// Type definitions for axe-webdriverjs 2.0
// Project: https://github.com/dequelabs/axe-webdriverjs#readme
// Definitions by: My Self <https://github.com/JoshuaKGoldberg>
// Definitions by: Joshua Goldberg <https://github.com/JoshuaKGoldberg>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

View File

@@ -1,6 +1,6 @@
// Type definitions for basicauth-middleware 3.1
// Project: https://github.com/nchaulet/basicauth-middleware
// Definitions by: My Self <https://github.com/nchaulet>
// Definitions by: Nicolas Chaulet <https://github.com/nchaulet>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

View File

@@ -1,6 +1,6 @@
// Type definitions for bip32 1.0
// Project: https://github.com/bitcoinjs/bip32#readme
// Definitions by: My Self <https://github.com/me>
// Definitions by: eduhenke <https://github.com/eduhenke>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />

View File

@@ -1,6 +1,6 @@
// Type definitions for braft-editor 1.9
// Project: https://github.com/margox/braft#readme
// Definitions by: My Self <https://github.com/me>
// Definitions by: Jonny Yao <https://github.com/petitspois>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8

View File

@@ -1,6 +1,6 @@
// Type definitions for cli-progress 1.8
// Project: https://github.com/AndiDittrich/Node.CLI-Progress
// Definitions by: My Self <https://github.com/mhegazy>
// Definitions by: Mohamed Hegazy <https://github.com/mhegazy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

View File

@@ -1,6 +1,6 @@
// Type definitions for config-yaml 1.1
// Project: https://github.com/neolao/config-yaml#readme
// Definitions by: My Self <https://github.com/me>
// Definitions by: Arylo Yeung <https://github.com/Arylo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.1

View File

@@ -1,6 +1,6 @@
// Type definitions for jsreport-html-to-xlsx 2.0
// Project: https://github.com/jsreport/jsreport-html-to-xlsx
// Definitions by: My Self <https://github.com/me>
// Definitions by: Tao Quifeng <https://github.com/taoqf>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

View File

@@ -1,6 +1,6 @@
// Type definitions for jsreport-html-to-xlsx 1.4
// Project: https://github.com/jsreport/jsreport-html-to-xlsx
// Definitions by: My Self <https://github.com/me>
// Definitions by: Tao Quifeng <https://github.com/taoqf>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

View File

@@ -1,9 +1,9 @@
// Type definitions for mongo-sanitize 1.0
// Project: https://github.com/vkarpov15/mongo-sanitize
// Definitions by: Cedric Cazin <https://github.com/CedricCazin>
// Definitions by: Cedric Cazin <https://github.com/CedricCazin>, Olga Isakova <https://github.com/penumbra1>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
// TypeScript Version: 2.7
export function sanitize<T extends object>(v: T): T;
declare function sanitize<T>(v: T): T;
export as namespace mongoSanitize;
export = sanitize;

View File

@@ -1,11 +1,11 @@
import * as mongoSanitize from 'mongo-sanitize';
import sanitize from "mongo-sanitize";
const objectSanitized = mongoSanitize.sanitize({ $gt: 5, a: 1 });
const objectSanitized = sanitize({ $gt: 5, a: 1 });
const arraySanitized = mongoSanitize.sanitize([1, 2, 3]);
const arraySanitized = sanitize([1, 2, 3]);
class Clazz {
$gt = 5;
a = 1;
}
const classSanitized = mongoSanitize.sanitize(new Clazz());
const classSanitized = sanitize(new Clazz());

View File

@@ -1,6 +1,6 @@
// Type definitions for permit 0.2
// Project: https://github.com/ianstormtaylor/permit#readme
// Definitions by: My Self <https://github.com/jannikkeye>
// Definitions by: Jannik Keye <https://github.com/jannikkeye>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />

View File

@@ -1,6 +1,6 @@
// Type definitions for pet-finder-api 1.0
// Project: https://github.com/drlukeangel/Pet-Finder-API-Javascript-Library
// Definitions by: My Self <https://github.com/me>
// Definitions by: ncipollina <https://github.com/ncipollina>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function petFinder(api_key: string, api_secret: string, options?: any): petFinder.PetFinder;

View File

@@ -1,6 +1,6 @@
// Type definitions for provinces 1.11
// Project: https://github.com/substack/provinces
// Definitions by: My Self <https://github.com/gatimus>
// Definitions by: William Lohan <https://github.com/gatimus>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare global {

View File

@@ -1,6 +1,6 @@
// Type definitions for react-blessed 0.3
// Project: https://github.com/yomguithereal/react-blessed#readme
// Definitions by: My Self <https://github.com/me>
// Definitions by: Century Guo <https://github.com/guoshencheng>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8

View File

@@ -1,6 +1,6 @@
// Type definitions for react-native-tab-navigator 0.3
// Project: https://github.com/exponentjs/react-native-tab-navigator#readme
// Definitions by: My Self <https://github.com/iRoachie>
// Definitions by: Kyle Roach <https://github.com/iRoachie>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8

View File

@@ -1,6 +1,6 @@
// Type definitions for require-directory 2.1
// Project: https://github.com/troygoode/node-require-directory/
// Definitions by: My Self <https://github.com/Igmat>
// Definitions by: Ihor Chulinda <https://github.com/Igmat>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.4
/// <reference types="node" />

View File

@@ -1,6 +1,6 @@
// Type definitions for urlencode 1.1
// Project: https://github.com/node-modules/urlencode
// Definitions by: My Self <https://github.com/kimcoder>
// Definitions by: kimcoder <https://github.com/kimcoder>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
interface charsetParam {

View File

@@ -1,6 +1,6 @@
// Type definitions for vue-color 2.4
// Project: https://github.com/xiaokaike/vue-color#readme
// Definitions by: My Self <https://github.com/me>
// Definitions by: Clément Flodrops <https://github.com/mildful>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.4