* Validates the given JSON object according to the associated TypeScript schema. Returns a * `Success ` object containing the JSON object if validation was successful. Otherwise, returns * an `Error` object with a `message` property describing the error. * @param jsonText The JSON o
(jsonObject: object)
| 83 | * @returns The JSON object or an error message. |
| 84 | */ |
| 85 | validate(jsonObject: object): Result<T>; |
| 86 | } |
| 87 | |
| 88 | /** |
no outgoing calls
no test coverage detected