Fix
This commit is contained in:
@@ -8,11 +8,11 @@ type TServices =
|
|||||||
export interface Services extends TServices {}
|
export interface Services extends TServices {}
|
||||||
|
|
||||||
export module Services {
|
export module Services {
|
||||||
export const Live = Layer.mergeAll(
|
export const Live: Layer.Layer<Services, never, never> = Layer.mergeAll(
|
||||||
TodoRepository.Live
|
TodoRepository.Live
|
||||||
) satisfies Layer.Layer<Services, never, never>
|
)
|
||||||
|
|
||||||
export const Dev = Layer.mergeAll(
|
export const Dev: Layer.Layer<Services, never, never> = Layer.mergeAll(
|
||||||
TodoRepository.Live
|
TodoRepository.Live
|
||||||
) satisfies Layer.Layer<Services, never, never>
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user