validate.d.ts 190 B

123
  1. import type { Path } from './types';
  2. export declare const validateJsonPointer: (pointer: string | Path | unknown) => void;
  3. export declare const validatePath: (path: Path | unknown) => void;