OptionalparentProperty: InspectablePropertyReadonlyfieldsReturns all fields in the object.
ReadonlymethodsReturns all methods in the object.
ReadonlyparentSearches the object for a field with the specified name.
Name of the field.
Object representing the field, if found, null otherwise.
Searches the object for a method with the specified name.
Name of the method.
Object representing the method, if found, null otherwise.
Searches the object, and all child objects for a field or entry with the specified name.
Slash separated path with field name(s) to search for. If a field contains an array, list or a map append its name with a "[x]" where x is the element index in the array/list, or a key name (surrounded by "") in case of a map. Only primitive map keys are supported.
Example path:
`subObject/myDictionary["someElement"]/theArray[4]/fieldToGet`
Property you can use for reading or modifying the property, or null if not found.
Searches the object hierarchy using the provided path elements. findProperty
Path elements representing field names and keys to look for.
Index in the pathElements array to start the search at.
Property representing the final path element, or null if not found.
The InspectableField provides access and meta-data of a TypeScript object. The primary use-case for this class is type reflection within the Inspector APIs.