UNPKG

267 BTypeScriptView Raw
1import type { PathArray } from '../types';
2/**
3 * Iterates an array to check if it's a `PathArray`
4 * with all segments are in non-shorthand notation
5 * with absolute values.
6 */
7export declare function isNormalizedArray(path: string | PathArray): path is PathArray;