typings.d.ts 388 B

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