提交学习笔记专用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
306 B

  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, legacyPaths: boolean) => string[];
  6. export {};