Handling Empty Structs in Schema Validation
Is it intended that
If so, is the way to do an empty struct just
Schema.Struct({}) will accept any non nullish value just like the typescript type? Even with onExessProperty: "error" it still allows all data throughIf so, is the way to do an empty struct just
Schema.Record({ key: Schema.String, value: Schema.Never }) ?