Skip to content

Commit

Permalink
chore: Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Oct 18, 2024
1 parent bcf16e5 commit 7a74e42
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
8 changes: 8 additions & 0 deletions packages/vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect-app/vue

## 1.26.11

### Patch Changes

- fix type
- Updated dependencies
- @effect-app/vue@1.26.11

## 1.26.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect-app/vue",
"version": "1.26.10",
"version": "1.26.11",
"license": "MIT",
"type": "module",
"homepage": "https://github.com/effect-ts-app/libs/tree/main/packages/vue",
Expand Down
8 changes: 7 additions & 1 deletion packages/vue/src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ import type { MaybeRefOrGetter, ShallowRef } from "vue"

export * as Result from "@effect-rx/rx/Result"

export type TaggedRequestClassAny = S.TaggedRequestClass<any, any, any, any, any>
export type TaggedRequestClassAny = S.Schema.Any & {
readonly _tag: string
// eslint-disable-next-line @typescript-eslint/no-explicit-any
readonly success: any
// eslint-disable-next-line @typescript-eslint/no-explicit-any
readonly failure: any
}

export function pauseWhileProcessing(
iv: Pausable,
Expand Down

0 comments on commit 7a74e42

Please sign in to comment.