(directory: string)
| 14 | export const layerFileSystem: ( |
| 15 | directory: string |
| 16 | ) => Layer.Layer<KeyValueStore.KeyValueStore, PlatformError.PlatformError> = (directory: string) => |
| 17 | Layer.provide( |
| 18 | KeyValueStore.layerFileSystem(directory), |
| 19 | Layer.merge(FileSystem.layer, Path.layer) |
| 20 | ) |