Revision 0.8.11 (#21)

* Ensure Type Evaluation in Standard Schema Class Signature

* Version
This commit is contained in:
sinclairzx81
2025-02-02 00:29:25 +09:00
committed by GitHub
parent 444d09aaa1
commit 6c5c187b4f
4 changed files with 42 additions and 26 deletions

View File

@@ -34,4 +34,14 @@ const C = Compile(X) // const C: Validator<TObjec
// x: TNumber;
// y: TNumber;
// z: TNumber;
// }>>
// }>>
// ------------------------------------------------------------------
// Validate | Standard
// ------------------------------------------------------------------
const R = C['~standard'].validate(null) // const R: StandardSchemaV1.Result<{
// x: number;
// y: number;
// z: number;
// }>