|
|
|
|
|
by lacampbell
2558 days ago
|
|
Plus, JS/TS already have proper union types without a need for a construct like Either. I disagree - what if on success it returns a string representing some data, and on failure it returns a string detailing the error? A `string | string` return type is not very useful, while an `Either<string, string>` is IMO. |
|
You could have:
type Result = {type: 'ok', value: string} | {type: 'err', value: string}