Skip to content

Commit

Permalink
chore: update @types/big.js (#1242)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarowolfx committed Aug 3, 2023
1 parent 0b9d382 commit 8d16fae
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
},
"devDependencies": {
"@google-cloud/storage": "^6.0.0",
"@types/big.js": "^6.0.0",
"@types/big.js": "^6.2.0",
"@types/extend": "^3.0.1",
"@types/is": "0.0.22",
"@types/mocha": "^9.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {paginator, ResourceStream} from '@google-cloud/paginator';
import {promisifyAll} from '@google-cloud/promisify';
import {PreciseDate} from '@google-cloud/precise-date';
import arrify = require('arrify');
import {Big} from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import * as is from 'is';
import * as uuid from 'uuid';
Expand Down
2 changes: 1 addition & 1 deletion src/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import {
import {paginator, ResourceStream} from '@google-cloud/paginator';
import {promisifyAll} from '@google-cloud/promisify';
import arrify = require('arrify');
import Big from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import {once} from 'events';
import * as fs from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion system-test/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
import {Storage} from '@google-cloud/storage';
import * as assert from 'assert';
import {describe, it, before, after} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import * as fs from 'fs';
import * as uuid from 'uuid';
import {Readable} from 'stream';
Expand Down
2 changes: 1 addition & 1 deletion test/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import * as pfy from '@google-cloud/promisify';
import arrify = require('arrify');
import * as assert from 'assert';
import {describe, it, after, afterEach, before, beforeEach} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import * as extend from 'extend';
import * as proxyquire from 'proxyquire';
import * as sinon from 'sinon';
Expand Down
2 changes: 1 addition & 1 deletion test/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import {File} from '@google-cloud/storage';
import arrify = require('arrify');
import * as assert from 'assert';
import {describe, it, afterEach, beforeEach, before, after} from 'mocha';
import Big from 'big.js';
import * as Big from 'big.js';
import {EventEmitter} from 'events';
import * as extend from 'extend';
import * as proxyquire from 'proxyquire';
Expand Down

0 comments on commit 8d16fae

Please sign in to comment.