UNPKG

416 BTypeScriptView Raw
1/// <reference types="typed-graphql" />
2
3declare module 'lodash.isequal' {
4 import main = require('lodash');
5 export = main.isEqual;
6}
7
8declare module 'lodash.forin' {
9 import main = require('lodash');
10 export = main.forIn;
11}
12
13declare module 'lodash.assign' {
14 import main = require('lodash');
15 export = main.assign;
16}
17
18declare module 'lodash.omit' {
19 import main = require('lodash');
20 export = main.omit;
21}