File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33---
44
55### Version Updates
6+ - [ Revision 1.0.15] ( https://github.com/sinclairzx81/typebox/pull/1346 )
7+ - Specify Types for AssertError Cause Properties
68- [ Revision 1.0.14] ( https://github.com/sinclairzx81/typebox/pull/1349 )
79 - Support Readonly Value Array on Enum Constructor.
810- [ Revision 1.0.13] ( https://github.com/sinclairzx81/typebox/pull/1348 )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ import { Errors } from '../errors/index.ts'
3535// AssertError
3636// ------------------------------------------------------------------
3737export class AssertError extends Error {
38- declare readonly cause : { source : string , errors : object [ ] , value : unknown } ;
38+ declare readonly cause : { source : string ; errors : object [ ] ; value : unknown }
3939 constructor ( source : string , value : unknown , errors : object [ ] ) {
4040 super ( source )
4141 Object . defineProperty ( this , 'cause' , {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import { Range } from './task/range/index.ts'
88import { Metrics } from './task/metrics/index.ts'
99import { Task } from 'tasksmith'
1010
11- const Version = '1.0.14 '
11+ const Version = '1.0.15 '
1212
1313// ------------------------------------------------------------------
1414// BuildPackage
You can’t perform that action at this time.
0 commit comments