mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* [bluebird] Rename import to Bluebird for tests * [bluebird] Restore assignability to native Promises * [bluebird] Upgrade TypeScript Versions of all dependents
This commit is contained in:
parent
dad14da7ea
commit
3c7c5b79aa
2
types/acl/index.d.ts
vendored
2
types/acl/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/optimalbits/node_acl
|
||||
// Definitions by: Qubo <https://github.com/tkQubo>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node"/>
|
||||
|
||||
|
||||
2
types/amqp-connection-manager/index.d.ts
vendored
2
types/amqp-connection-manager/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/benbria/node-amqp-connection-manager
|
||||
// Definitions by: rogierschouten <https://github.com/rogierschouten>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import { ConfirmChannel, Connection, Message, Options, Replies } from "amqplib";
|
||||
import { EventEmitter } from "events";
|
||||
|
||||
2
types/amqplib/index.d.ts
vendored
2
types/amqplib/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/squaremo/amqp.node, http://squaremo.github.io/amqp.node
|
||||
// Definitions by: Michael Nahkies <https://github.com/mnahkies>, Ab Reitsma <https://github.com/abreits>, Nicolás Fantone <https://github.com/nfantone>, Nick Zelei <https://github.com/zelein>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/asana/index.d.ts
vendored
2
types/asana/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/Asana/node-asana
|
||||
// Definitions by: Qubo <https://github.com/tkqubo>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
import * as Promise from 'bluebird';
|
||||
|
||||
declare namespace asana {
|
||||
|
||||
2
types/blue-tape/index.d.ts
vendored
2
types/blue-tape/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/spion/blue-tape
|
||||
// Definitions by: Haoqun Jiang <https://github.com/sodatea>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/bluebird-global/index.d.ts
vendored
2
types/bluebird-global/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/kaatt/bluebird-global
|
||||
// Definitions by: d-ph <https://github.com/d-ph>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/*
|
||||
* 1. Why use `bluebird-global` instead of `bluebird`?
|
||||
|
||||
2
types/bluebird-retry/index.d.ts
vendored
2
types/bluebird-retry/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/demmer/bluebird-retry
|
||||
// Definitions by: Pascal Vomhoff <https://github.com/pvomhoff>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Promise = require('bluebird');
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
4
types/bluebird/index.d.ts
vendored
4
types/bluebird/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/petkaantonov/bluebird
|
||||
// Definitions by: Leonard Hecker <https://github.com/lhecker>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/*!
|
||||
* The code following this comment originates from:
|
||||
@ -41,6 +41,8 @@ type Resolvable<R> = R | PromiseLike<R>;
|
||||
type IterateFunction<T, R> = (item: T, index: number, arrayLength: number) => Resolvable<R>;
|
||||
|
||||
declare class Bluebird<R> implements PromiseLike<R>, Bluebird.Inspection<R> {
|
||||
readonly [Symbol.toStringTag]: "Object";
|
||||
|
||||
/**
|
||||
* Create a new promise. The passed in function will receive functions
|
||||
* `resolve` and `reject` as its arguments which can be called to seal the fate of the created promise.
|
||||
|
||||
2
types/bookshelf/index.d.ts
vendored
2
types/bookshelf/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: http://bookshelfjs.org/
|
||||
// Definitions by: Andrew Schurman <https://github.com/arcticwaters>, Vesa Poikajärvi <https://github.com/vesse>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Knex = require('knex');
|
||||
import knex = require('knex');
|
||||
|
||||
2
types/consolidate/index.d.ts
vendored
2
types/consolidate/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/visionmedia/consolidate.js
|
||||
// Definitions by: Carlos Ballesteros Velasco <https://github.com/soywiz>, Theo Sherry <https://github.com/theosherry>, Nicolas Henry <https://github.com/nicolashenry>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
// Imported from: https://github.com/soywiz/typescript-node-definitions/consolidate.d.ts
|
||||
|
||||
|
||||
2
types/db-migrate-base/index.d.ts
vendored
2
types/db-migrate-base/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/db-migrate/db-migrate-base
|
||||
// Definitions by: nickiannone <https://github.com/nickiannone>
|
||||
// Definitions: https://github.com/nickiannone/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node"/>
|
||||
|
||||
|
||||
2
types/db-migrate-pg/index.d.ts
vendored
2
types/db-migrate-pg/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/db-migrate/pg
|
||||
// Definitions by: nickiannone <https://github.com/nickiannone>
|
||||
// Definitions: https://github.com/nickiannone/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as pg from "pg";
|
||||
import * as DbMigrateBase from "db-migrate-base";
|
||||
|
||||
2
types/dts-generator/index.d.ts
vendored
2
types/dts-generator/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/SitePen/dts-generator#readme
|
||||
// Definitions by: Matt Traynham <https://github.com/mtraynham>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import ts = require('typescript');
|
||||
import Bluebird = require('bluebird');
|
||||
|
||||
2
types/epilogue/index.d.ts
vendored
2
types/epilogue/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/dchester/epilogue
|
||||
// Definitions by: Satana Charuwichitratana <https://github.com/micksatana>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import {
|
||||
Sequelize,
|
||||
|
||||
2
types/fs-extra-promise/index.d.ts
vendored
2
types/fs-extra-promise/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/overlookmotel/fs-extra-promise
|
||||
// Definitions by: midknight41 <https://github.com/midknight41>, Jason Swearingen <https://github.com/jasonswearingen>, Hiromi Shikata <https://github.com/HiromiShikata>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/hexo-fs/index.d.ts
vendored
2
types/hexo-fs/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://hexo.io
|
||||
// Definitions by: segayuu <https://github.com/segayuu>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Promise = require('bluebird');
|
||||
import {
|
||||
|
||||
2
types/inline-css/index.d.ts
vendored
2
types/inline-css/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/jonkemp/inline-css
|
||||
// Definitions by: Philip Spain <https://github.com/philipisapain>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Promise = require('bluebird');
|
||||
|
||||
|
||||
2
types/ioredis/v3/index.d.ts
vendored
2
types/ioredis/v3/index.d.ts
vendored
@ -9,7 +9,7 @@
|
||||
// Francis Gulotta <https://github.com/reconbot>
|
||||
// Alex Petty <https://github.com/pettyalex>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/* =================== USAGE ===================
|
||||
import * as Redis from "ioredis";
|
||||
|
||||
2
types/jackrabbit/index.d.ts
vendored
2
types/jackrabbit/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/hunterloftis/jackrabbit
|
||||
// Definitions by: Elvis Adomnica <https://github.com/elvisvoer>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import { Connection, Options, Message } from 'amqplib';
|
||||
|
||||
|
||||
2
types/karma-coverage/index.d.ts
vendored
2
types/karma-coverage/index.d.ts
vendored
@ -3,7 +3,7 @@
|
||||
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
||||
// Yaroslav Admin <https://github.com/devoto13>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import 'karma';
|
||||
import * as istanbul from 'istanbul';
|
||||
|
||||
2
types/karma-webpack/index.d.ts
vendored
2
types/karma-webpack/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/webpack-contrib/karma-webpack
|
||||
// Definitions by: Matt Traynham <https://github.com/mtraynham>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import 'karma';
|
||||
import * as Webpack from 'webpack';
|
||||
|
||||
2
types/karma/index.d.ts
vendored
2
types/karma/index.d.ts
vendored
@ -4,7 +4,7 @@
|
||||
// James Garbutt <https://github.com/43081j>
|
||||
// Yaroslav Admin <https://github.com/devoto13>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/karma/v1/index.d.ts
vendored
2
types/karma/v1/index.d.ts
vendored
@ -3,7 +3,7 @@
|
||||
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
||||
// James Garbutt <https://github.com/43081j>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/move-concurrently/index.d.ts
vendored
2
types/move-concurrently/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://www.npmjs.com/package/move-concurrently
|
||||
// Definitions by: Melvin Groenhoff <https://github.com/mgroenhoff>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/**
|
||||
* Recursively moves from to to and resolves its promise when finished. If to already exists then the promise will be rejected with an EEXIST error.
|
||||
|
||||
2
types/node-mysql-wrapper/index.d.ts
vendored
2
types/node-mysql-wrapper/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/nodets/node-mysql-wrapper
|
||||
// Definitions by: Makis Maropoulos <https://github.com/kataras>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
///<reference path="./my-meteor.d.ts" />
|
||||
|
||||
|
||||
4
types/orientjs/index.d.ts
vendored
4
types/orientjs/index.d.ts
vendored
@ -2,8 +2,8 @@
|
||||
// Project: https://github.com/orientechnologies/orientjs
|
||||
// Definitions by: [Saeed Tabrizi] <https://github.com/saeedtabrizi>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// Last Update : 11-4-2019
|
||||
// TypeScript Version: 3.2
|
||||
// Last Update : 17-4-2019
|
||||
// Compatible with Orientdb >= 2.2.x and orientjs <= 3.0.x features.
|
||||
// Developed with love in www.nowcando.com
|
||||
|
||||
|
||||
2
types/project-oxford/index.d.ts
vendored
2
types/project-oxford/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/felixrieseberg/project-oxford
|
||||
// Definitions by: Scott Southwood <https://github.com/scsouthw>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/promise-ftp/index.d.ts
vendored
2
types/promise-ftp/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/realtymaps/promise-ftp
|
||||
// Definitions by: coolreader18 <https://github.com/coolreader18>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/promise-sftp/index.d.ts
vendored
2
types/promise-sftp/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/realtymaps/promise-sftp
|
||||
// Definitions by: coolreader18 <https://github.com/coolreader18>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
2
types/redlock/index.d.ts
vendored
2
types/redlock/index.d.ts
vendored
@ -3,7 +3,7 @@
|
||||
// Definitions by: Ilya Mochalov <https://github.com/chrootsu>
|
||||
// BendingBender <https://github.com/BendingBender>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as Promise from 'bluebird';
|
||||
import { EventEmitter } from 'events';
|
||||
|
||||
2
types/redlock/v2/index.d.ts
vendored
2
types/redlock/v2/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/mike-marcacci/node-redlock
|
||||
// Definitions by: Ilya Mochalov <https://github.com/chrootsu>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as redis from 'redis';
|
||||
import * as Promise from 'bluebird';
|
||||
|
||||
2
types/request-promise/index.d.ts
vendored
2
types/request-promise/index.d.ts
vendored
@ -5,7 +5,7 @@
|
||||
// Aya Morisawa <https://github.com/AyaMorisawa>
|
||||
// Matt R. Wilson <https://github.com/mastermatt>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import request = require('request');
|
||||
import http = require('http');
|
||||
|
||||
2
types/restling/index.d.ts
vendored
2
types/restling/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/lucasfeliciano/restling
|
||||
// Definitions by: Alessandro vergani <https://github.com/loghorn>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as Promise from "bluebird";
|
||||
import * as Restler from "restler";
|
||||
|
||||
2
types/retry-as-promised/index.d.ts
vendored
2
types/retry-as-promised/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/mickhansen/retry-as-promised
|
||||
// Definitions by: Florian Oellerich <https://github.com/Raigen>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Promise = require('bluebird');
|
||||
|
||||
|
||||
2
types/sequelize-cursor-pagination/index.d.ts
vendored
2
types/sequelize-cursor-pagination/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/Kaltsoon/sequelize-cursor-pagination
|
||||
// Definitions by: pilagod <https://github.com/pilagod>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped/
|
||||
// TypeScript Version: 2.9
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Sequelize = require('sequelize');
|
||||
|
||||
|
||||
2
types/sequelize-fixtures/index.d.ts
vendored
2
types/sequelize-fixtures/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/domasx2/sequelize-fixtures
|
||||
// Definitions by: Christian Schwarz <https://github.com/cschwarz>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as Sequelize from "sequelize";
|
||||
|
||||
|
||||
2
types/sequelize/index.d.ts
vendored
2
types/sequelize/index.d.ts
vendored
@ -20,7 +20,7 @@
|
||||
// Emmanuel Gautier <https://github.com/emmanuelgautier>
|
||||
// Dan Rumney <https://github.com/dancrumb>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
// ***************************** IMPORTANT NOTE *****************************
|
||||
// These types are for the 4.x branch of Sequelize. As of Sequelize 5.0,
|
||||
|
||||
2
types/sequelize/v3/index.d.ts
vendored
2
types/sequelize/v3/index.d.ts
vendored
@ -6,7 +6,7 @@
|
||||
// Nick Mueller <https://github.com/morpheusxaut>
|
||||
// James D. Callahan III <https://github.com/torhal>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
// Based on original work by: samuelneff <https://github.com/samuelneff/sequelize-auto-ts/blob/master/lib/sequelize.d.ts>
|
||||
|
||||
|
||||
2
types/simple-oauth2/v1/index.d.ts
vendored
2
types/simple-oauth2/v1/index.d.ts
vendored
@ -4,7 +4,7 @@
|
||||
// Troy Lamerton <https://github.com/troy-lamerton>
|
||||
// Martín Rodriguez <https://github.com/netux>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.9
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import Bluebird = require("bluebird");
|
||||
|
||||
|
||||
2
types/supertest-as-promised/index.d.ts
vendored
2
types/supertest-as-promised/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/WhoopInc/supertest-as-promised
|
||||
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import * as supertest from "supertest";
|
||||
import * as superagent from "superagent";
|
||||
|
||||
2
types/umzug/index.d.ts
vendored
2
types/umzug/index.d.ts
vendored
@ -5,7 +5,7 @@
|
||||
// Troy McKinnon <https://github.com/trodi>
|
||||
// Emmanuel Gautier <https://github.com/emmanuelgautier>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
import { EventEmitter } from 'events';
|
||||
import Sequelize = require("sequelize");
|
||||
|
||||
2
types/waterline/index.d.ts
vendored
2
types/waterline/index.d.ts
vendored
@ -2,7 +2,7 @@
|
||||
// Project: https://github.com/balderdashy/waterline
|
||||
// Definitions by: Alexandro Libertino <https://github.com/arvitaly>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.8
|
||||
// TypeScript Version: 3.2
|
||||
|
||||
/// <reference types="node" />
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user