/** * 数组化键名路径 */ export type KeyPath = string[]; /** * 规范化键名路径 * * @example * normalizeKeyPath("foo.bar") // => ["foo","bar"] * normalizeKeyPath("foo/bar") // => ["foo","bar"] * normalizeKeyPath(["foo","bar"]) // => ["foo","bar"] * * @param inPath * @return {string[]} */ export declare function normalizeKeyPath(inPath: string | string[]): KeyPath; //# sourceMappingURL=normalizeKeyPath.d.ts.map