Skip to content

Commit

Permalink
fix: remove @types/p-queue (#1627)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Mar 6, 2019
1 parent 16cf464 commit 96b8b98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion package.json
Expand Up @@ -64,7 +64,6 @@
"@types/nock": "^9.1.3",
"@types/node": "^10.0.8",
"@types/nunjucks": "^3.0.0",
"@types/p-queue": "^3.0.0",
"@types/pify": "^3.0.2",
"@types/qs": "^6.5.1",
"@types/rimraf": "^2.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/generator/docs.ts
Expand Up @@ -17,7 +17,7 @@
import * as execa from 'execa';
import * as fs from 'fs';
import * as nunjucks from 'nunjucks';
import * as Q from 'p-queue';
import Q from 'p-queue';
import * as path from 'path';
import {promisify} from 'util';

Expand Down
4 changes: 2 additions & 2 deletions src/generator/generator.ts
Expand Up @@ -12,12 +12,12 @@
// limitations under the License.

import * as fs from 'fs';
import {Gaxios, GaxiosOptions, Headers} from 'gaxios';
import {GaxiosOptions, Headers} from 'gaxios';
import {DefaultTransporter} from 'google-auth-library';
import {FragmentResponse, Schema, SchemaItem, SchemaMethod, SchemaParameters, SchemaResource, Schemas} from 'googleapis-common';
import * as mkdirp from 'mkdirp';
import * as nunjucks from 'nunjucks';
import * as Q from 'p-queue';
import Q from 'p-queue';
import * as path from 'path';
import * as url from 'url';
import * as util from 'util';
Expand Down

0 comments on commit 96b8b98

Please sign in to comment.