1 | interface Array<T> {
|
2 | indexOfField : (propertyName: string, value: any) => number;
|
3 | }
|
4 |
|
5 | declare module 'lodash.assign' {
|
6 | import {assign} from 'lodash';
|
7 | export = assign;
|
8 | }
|
9 |
|
10 | declare module 'lodash.isobject' {
|
11 | import {isObject} from 'lodash';
|
12 | export = isObject;
|
13 | }
|
14 |
|
15 | declare module 'lodash.isstring' {
|
16 | import {isString} from 'lodash';
|
17 | export = isString;
|
18 | }
|
19 |
|
20 | declare module 'backo2';
|