UNPKG

@ryancavanaugh/dot-prop

Version:

Type definitions for dot-prop from https://www.github.com/DefinitelyTyped/DefinitelyTyped

9 lines (6 loc) 369 B
// Type definitions for dot-prop // Project: https://github.com/sindresorhus/dot-prop // Definitions by: Sam Verschueren <https://github.com/samverschueren> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export declare function get(object: any, path: string): any; export declare function set(object: any, path: string, value: any): void;