interface PathAccessor { exists(): boolean; fix( fixCallback?: ( last: any, parts: (
string | symbol)
[], i: number, ) => void, ): PathAccessor; get(): unknown; invalid: boolean; set(value: unknown): void;} Properties
Readonly
invalid
invalid: boolean
Methods
exists
- exists(): boolean
Returns boolean
fix
- fix(
fixCallback?: (last: any, parts: (string | symbol)[], i: number) => void,
): PathAccessor Parameters
Optional
fixCallback: (last: any, parts: (string | symbol)[], i: number) => void
get
- get(): unknown
Returns unknown
set
- set(value: unknown): void
Returns void
Path accessors are generated by the function returned from
PropertyPath(...)
.