Skip to content

Commit

Permalink
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/four-chicken-guess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'type-plus': patch
---

Remove `@internal`. It is causing those types to be skipped from output (cjs/esm/*.d.ts).
2 changes: 0 additions & 2 deletions ts/array/array_plus.split_at.ts
Original file line number Diff line number Diff line change
@@ -33,8 +33,6 @@ export type SplitAt<A extends unknown[], Index extends number> = ArrayType<
/**
* Splits an array into two at the specified `Index`.
* The device does not work on negative index nor out of bound index.
*
* @internal
*/
export type ArraySplitAtDevice<
A extends unknown[],
2 changes: 0 additions & 2 deletions ts/math/numeric_struct.ts
Original file line number Diff line number Diff line change
@@ -319,7 +319,6 @@ export namespace DigitsStruct {

/**
* This is used to align the `NumberStruct` during `Add/Subtract`.
* @internal
*/
export type GetMinPadEnd<
A extends number,
@@ -382,7 +381,6 @@ export namespace DigitArray {
*
* This is used in various places so that there will be less computation,
* and the sign bit can be handled properly.
* @internal
*/
export type TrimLeadingZeros<T extends number[]> = T extends [0]
? T

0 comments on commit 946c602

Please sign in to comment.