MeterSphere/frontend/types/jsonpath.d.ts

10 lines
283 B
TypeScript
Raw Normal View History

2023-05-24 11:08:08 +08:00
declare module 'jsonpath-picker-vanilla' {
export function jsonPathPicker(
source: HTMLElement | null,
json: object,
target: (HTMLInputElement | null)[],
opt: Record<string, any>
): void;
export function clearJsonPathPicker(source: HTMLElement | null): void;
}