Fix
Lint / lint (push) Successful in 28s

This commit is contained in:
Julien Valverdé
2026-07-17 00:32:02 +02:00
parent 078dfc7712
commit 2fb055f728
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ extends View.View<A, ER, RR> {
export const isLens = (u: unknown): u is Lens<unknown, unknown, unknown, unknown, unknown> => Predicate.hasProperty(u, LensTypeId) export const isLens = (u: unknown): u is Lens<unknown, unknown, unknown, unknown, unknown> => Predicate.hasProperty(u, LensTypeId)
export const LensImplTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/LensImpl") export const LensImplTypeId: unique symbol = Symbol.for("@effect-lens/Lens/LensImpl")
export type LensImplTypeId = typeof LensImplTypeId export type LensImplTypeId = typeof LensImplTypeId
export declare namespace LensImpl { export declare namespace LensImpl {
+1 -1
View File
@@ -13,7 +13,7 @@ export interface View<out A, out E = never, out R = never> extends Pipeable.Pipe
export const isView = (u: unknown): u is View<unknown, unknown, unknown> => Predicate.hasProperty(u, ViewTypeId) export const isView = (u: unknown): u is View<unknown, unknown, unknown> => Predicate.hasProperty(u, ViewTypeId)
export const ViewImplTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/ViewImpl") export const ViewImplTypeId: unique symbol = Symbol.for("@effect-lens/Lens/ViewImpl")
export type ViewImplTypeId = typeof ViewImplTypeId export type ViewImplTypeId = typeof ViewImplTypeId
export declare namespace ViewImpl { export declare namespace ViewImpl {