| 15 | |
| 16 | /** @internal */ |
| 17 | export interface Base<D, E, A> extends Data.Case, Pipeable { |
| 18 | readonly _id: Result.TypeId |
| 19 | readonly [TypeId]: { |
| 20 | readonly _A: (_: never) => A |
| 21 | readonly _E: (_: never) => E |
| 22 | readonly _D: (_: never) => D |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | /** @internal */ |
| 27 | export const TypeId: Result.TypeId = Symbol.for( |
nothing calls this directly
no outgoing calls
no test coverage detected