( workspace: WorkspaceFsLike )
| 170 | * every caller gets identical ENOENT and stat-normalization semantics. |
| 171 | */ |
| 172 | export function createWorkspaceStateBackend( |
| 173 | workspace: WorkspaceFsLike |
| 174 | ): FileSystemStateBackend { |
| 175 | return new FileSystemStateBackend(new WorkspaceFileSystem(workspace)); |
| 176 | } |
| 177 | |
| 178 | /** @deprecated Use `FileSystemStateBackend` */ |
| 179 | export const WorkspaceStateBackend = FileSystemStateBackend; |
no outgoing calls
no test coverage detected