UNPKG

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