QueryProgress
All checks were successful
Lint / lint (push) Successful in 14s

This commit is contained in:
Julien Valverdé
2025-03-18 03:11:39 +01:00
parent f85173fa68
commit f21d8b2d8a

View File

@@ -0,0 +1,7 @@
import type * as AsyncData from "@typed/async-data"
import { Effect, type Option } from "effect"
export class QueryProgress extends Effect.Tag("@reffuse/extension-query/QueryProgress")<QueryProgress, {
readonly set: (previous: Option.Option<AsyncData.Progress>) => Effect.Effect<void>
}>() {}