13 lines
537 B
TypeScript
13 lines
537 B
TypeScript
// Generated by typings
|
|
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/337587de8c13868283993bfacdcdd1a0f3291e7f/dot-prop/index.d.ts
|
|
declare module 'dot-prop' {
|
|
// 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 function get(object: any, path: string): any;
|
|
export function set(object: any, path: string, value: any): void;
|
|
}
|