mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add basic types def for lodash-deep Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Add tests, tslint, tsconfig Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Make things pretty Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Remove new line Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Move changes to types dir Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Change fn from lodash-deep to index Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Change file list in tsconfig Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Modify module as per template, add lodash to tests Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Add typescript version Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Remove new lines, fix header Signed-off-by: Uzunov <stanko.uzunov@broadcom.com>
24 lines
561 B
TypeScript
24 lines
561 B
TypeScript
// Type definitions for lodash-deep 2.0
|
|
// Project: https://github.com/DefinitelyTyped/lodash-deep
|
|
// Definitions by: Stan <https://github.com/uzust01>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.5
|
|
|
|
import * as _ from 'lodash';
|
|
|
|
declare module 'lodash' {
|
|
interface LoDashStatic {
|
|
deepMapValues(
|
|
object: any,
|
|
callback: any,
|
|
propertyPath?: any
|
|
): any;
|
|
}
|
|
}
|
|
|
|
export function deepMapValues(
|
|
object: any,
|
|
callback: any,
|
|
propertyPath?: any
|
|
): any;
|