Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Fix lodash typings
Browse files Browse the repository at this point in the history
  • Loading branch information
rricard committed Sep 19, 2016
1 parent 49d0295 commit 1ceb54e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions typings.d.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/// <reference types="typed-graphql" />

declare module 'lodash.isobject' {
import main = require('lodash');
export = main.isObject;
import {isObject} from 'lodash';
export = isObject;
}

declare module 'lodash.isstring' {
import main = require('lodash');
export = main.isString;
import {isString} from 'lodash';
export = isString;
}

0 comments on commit 1ceb54e

Please sign in to comment.