// Type definitions for dot-prop // Project: https://github.com/sindresorhus/dot-prop // Definitions by: Sam Verschueren // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "dot-prop" { export function get(object: any, path: string): any; export function set(object: any, path: string, value: any): void; }