Fix
Lint / lint (push) Successful in 42s

This commit is contained in:
Julien Valverdé
2026-05-16 12:57:33 +02:00
parent 71d1442926
commit 8e79d5d118
+9 -5
View File
@@ -102,11 +102,15 @@ extends Pipeable.Pipeable {
readonly use: Effect.Effect<F, never, Exclude<R, Scope.Scope>> readonly use: Effect.Effect<F, never, Exclude<R, Scope.Scope>>
} }
export const ComponentPrototype: ComponentPrototype<any, any> = Object.freeze({ export const ComponentPrototype: ComponentPrototype<any, any> = Object.freeze(
[ComponentTypeId]: ComponentTypeId, Object.defineProperties(
...Pipeable.Prototype, {
...ComponentImplPrototype, [ComponentTypeId]: ComponentTypeId,
} as const) ...Pipeable.Prototype,
},
Object.getOwnPropertyDescriptors(ComponentImplPrototype),
) as ComponentPrototype<any, any>
)
export interface ComponentOptions { export interface ComponentOptions {