市场夺宝奇兵
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
284 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) => string[];
  6. export {};