botbook/node_modules/@sagold/json-query/dist/index.d.ts

16 lines
501 B
TypeScript
Raw Normal View History

2024-09-04 13:13:15 -03:00
import { get, ReturnType, ResultCallback } from "./lib/get";
import { set } from "./lib/set";
import { split } from "./lib/split";
import { remove } from "./lib/remove";
export { get, set, split, remove, ReturnType };
declare const _default: {
get: typeof get;
set: typeof set;
split: typeof split;
remove: typeof remove;
ReturnType: typeof ReturnType;
};
export default _default;
export type { ResultCallback };
export type { Input, JsonPointer, QueryResult } from "./lib/types";