pathstringifier.d.ts 284 B

123456
  1. export declare type StringifiedPath = string;
  2. declare type Path = string[];
  3. export declare const escapeKey: (key: string) => string;
  4. export declare const stringifyPath: (path: Path) => StringifiedPath;
  5. export declare const parsePath: (string: StringifiedPath) => string[];
  6. export {};