Interface for ObjectParserError.
| 1 | /** Interface for ObjectParserError. */ |
| 2 | interface IObjectParserError { |
| 3 | /** Stack of property names. */ |
| 4 | stack: string[]; |
| 5 | /** Error message. */ |
| 6 | message: string; |
| 7 | /** Returns a string representation of the error. */ |
| 8 | toString(): string; |
| 9 | } |
| 10 | |
| 11 | /** Collection of arguments for the constructor of ObjectParserProp. */ |
| 12 | type ObjectParserOptions<T> = { |
no outgoing calls
no test coverage detected