Files
DefinitelyTyped/types/dot-prop/index.d.ts
2017-03-24 14:27:52 -07:00

9 lines
361 B
TypeScript

// 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;