Skip to content

Commit

Permalink
Remove unnecessary export and move tag to the display type
Browse files Browse the repository at this point in the history
  • Loading branch information
diogob committed Jul 14, 2024
1 parent 573a41d commit 1c6f641
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ type MergeObjects<Objs extends unknown[], output = {}> = Objs extends [
: output

/**
* An untagged composable async function that catches failures.
* We only use this type to make the Composable type neater looking.
* A composable async function that catches failures.
* We only use this type to make the Composable type neater looking, use `Composable` instead.
* It does not need to be exported by the library.
*/
type ComposableFunction<T extends Internal.AnyFn = Internal.AnyFn> = {
Expand Down Expand Up @@ -270,7 +270,6 @@ export type {
CanComposeInParallel,
CanComposeInSequence,
Composable,
ComposableFunction,
ComposableWithSchema,
FailToCompose,
Failure,
Expand Down

0 comments on commit 1c6f641

Please sign in to comment.