mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
397 B
TypeScript
12 lines
397 B
TypeScript
// Type definitions for jspath 0.4
|
|
// Project: https://github.com/dfilatov/jspath
|
|
// Definitions by: Piot Roszatycki <https://github.com/dex4er>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/**
|
|
* @param path path expression
|
|
* @param data input JSON document
|
|
* @param replacement substitutions
|
|
*/
|
|
export function apply(path: string, data: any, replacement?: any): any[];
|