Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Newly exports the following types: `Assign`, `If`, `IsUnion`, `ObjectType`, `PartialObjectSchema`, `StructSchema`, `TupleSchema`

## [3.0.0]

### Added
Expand Down
7 changes: 7 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,23 @@ export * from './structs/types.js';
export * from './structs/utilities.js';
export type {
AnyStruct,
Assign,
EnumSchema,
If,
InferStructTuple,
IsExactMatch,
IsMatch,
IsRecord,
IsTuple,
IsUnion,
ObjectSchema,
ObjectType,
OmitBy,
Optionalize,
PartialObjectSchema,
PickBy,
Simplify,
StructSchema,
TupleSchema,
UnionToIntersection,
} from './utils.js';