* Get a property of this object. * * @param label Label of the property (also known as "property name"). * @param optional If the property is optional (no error is "fired" if it is not found, default is false). * @returns Property with given label (wrapped in ObjectParserProp).
(label: L, optional?: boolean)
| 70 | * @returns Property with given label (wrapped in ObjectParserProp). |
| 71 | */ |
| 72 | prop<L extends keyof P>(label: L, optional?: boolean): IObjectParserProp<P[L]>; |
| 73 | |
| 74 | /** |
| 75 | * Get a property of this object. |
no outgoing calls
no test coverage detected