Refactor Mutation
Lint / lint (push) Failing after 48s

This commit is contained in:
Julien Valverdé
2026-06-26 02:38:24 +02:00
parent 015aa0c816
commit e5ac120cea
2 changed files with 90 additions and 79 deletions
+1 -1
View File
@@ -286,7 +286,7 @@ extends Pipeable.Class implements Query<K, A, KE, KR, E, R> {
}
export const isQuery = (u: unknown): u is Query<readonly unknown[], unknown> => Predicate.hasProperty(u, QueryTypeId)
export const isQuery = (u: unknown): u is Query<readonly unknown[], unknown, unknown, unknown, unknown, unknown> => Predicate.hasProperty(u, QueryTypeId)
export declare namespace make {