Skip to content

Commit

Permalink
Merge pull request #126 from ahrjarrett/@ahrjarrett/v0.43.3
Browse files Browse the repository at this point in the history
v0.43.3
  • Loading branch information
ahrjarrett authored May 18, 2024
2 parents 12795d7 + 6dccbe0 commit 2c66337
Show file tree
Hide file tree
Showing 8 changed files with 567 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/swift-hounds-wait.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"any-ts": patch
---

24e3d93 \* @ahrjarrett/v0.43.3 feat: adds simplified `Kind` implementation (available now under `experimental.Kind`)
5 changes: 5 additions & 0 deletions .changeset/tricky-cherries-sniff.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"any-ts": patch
---

feat: adds `any.four`, `mut.four`, exports experimental Kind encoding from `experimental.Kind`
1 change: 1 addition & 0 deletions src/any/any.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ declare namespace any {
export type double<type extends two = two> = type
export type binary<type extends some.binary = some.binary> = type
export type three<first = _, second = _, third = _> = readonly [_1: first, _2: second, _3: third]
export type four<first = _, second = _, third = _, fourth = _> = readonly [_1: first, _2: second, _3: third, _4: fourth]
export type triple<type extends three = three> = type
export type ternary<type extends some.ternary = some.ternary> = type
export type record<type extends globalThis.Record<string, _> = globalThis.Record<string, _>> = type
Expand Down
3 changes: 3 additions & 0 deletions src/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ export type {
Intersectable,
Negate,
} from "./kind/exports.js"

export type * as experimental from "./kind-new/exports.js"

export type { traversable, traversal } from "./traversable/exports.js"
export type { Tree } from "./tree/exports.js"
export type { iter } from "./iter/exports.js"
Expand Down
1 change: 1 addition & 0 deletions src/kind-new/exports.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export type { Kind, Kind2, Kind3, Kind4 } from "./kind.js"
Loading

0 comments on commit 2c66337

Please sign in to comment.