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.
20 lines
427 B
20 lines
427 B
export interface Path {
|
|
prev: Path | undefined;
|
|
key: string | number;
|
|
typename: string | undefined;
|
|
}
|
|
|
|
/**
|
|
* Given a Path and a key, return a new Path containing the new key.
|
|
*/
|
|
export function addPath(
|
|
prev: Path | undefined,
|
|
key: string | number,
|
|
typename: string | undefined,
|
|
): Path;
|
|
|
|
/**
|
|
* Given a Path, return an Array of the path keys.
|
|
*/
|
|
export function pathToArray(path: Path): Array<string | number>;
|