(directory: string)
| 63 | }) |
| 64 | |
| 65 | export const loadAnnotations = (directory: string) => |
| 66 | loadAnnotationsInternal(directory).pipe( |
| 67 | Effect.mapError((cause) => |
| 68 | isApiDiffError(cause) |
| 69 | ? cause |
| 70 | : new ApiDiffError({ message: `Could not load annotations from ${directory}`, cause }) |
| 71 | ) |
| 72 | ) |
no test coverage detected