mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
10 lines
376 B
TypeScript
10 lines
376 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
|
|
|
|
declare module "dot-prop" {
|
|
export function get(object: any, path: string): any;
|
|
export function set(object: any, path: string, value: any): void;
|
|
}
|