cnf
2025-05-10 386fa0eca75ddc88165f9b73038f2a2239e1072e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
/**
 * Transform flat json in obj to normal json in obj
 */
export declare function handleFlatJson(obj: unknown): unknown;
 
/**
 * Parse a string path into an array of segments
 */
export declare function parse(path: Path): string[] | undefined;
 
/** @VueI18nGeneral */
export declare type Path = string;
 
export declare type PathValue = string | number | boolean | Function | null | {
    [key: string]: PathValue;
} | PathValue[];
 
export declare function resolveValue(obj: unknown, path: Path): PathValue;
 
export { }