Skip to content

Commit 2fc1e94

Browse files
authored
Version 1.0.72 (#1503)
* Use Alias to Export Object Function * ChangeLog * Version
1 parent 93745c3 commit 2fc1e94

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

changelog/1.0.0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
---
44

55
### Version Updates
6+
- [Revision 1.0.72](https://github.com/sinclairzx81/typebox/pull/1503)
7+
- Use Alias to Export Object Function (React Native)
68
- [Revision 1.0.71](https://github.com/sinclairzx81/typebox/pull/1499)
79
- Additional Inference for XSchema Types
810
- [Revision 1.0.70](https://github.com/sinclairzx81/typebox/pull/1498)

src/type/types/object.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,7 @@ function _Object_<Properties extends TProperties>(properties: Properties, option
5858
const required = requiredKeys.length > 0 ? { required: requiredKeys } : {}
5959
return Memory.Create({ '~kind': 'Object' }, { type: 'object', ...required, properties }, options) as never
6060
}
61-
/** `[Json]` Creates an Object type */
62-
export var Object = _Object_ // Required for CommonJS ES Interop
61+
export { _Object_ as Object } // Required for CommonJS ES Interop
6362

6463
// ------------------------------------------------------------------
6564
// Guard

tasks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Range } from './task/range/index.ts'
88
import { Metrics } from './task/metrics/index.ts'
99
import { Task } from 'tasksmith'
1010

11-
const Version = '1.0.71'
11+
const Version = '1.0.72'
1212

1313
// ------------------------------------------------------------------
1414
// Build

0 commit comments

Comments
 (0)