Represents a successful result.
import { Result } from '@praha/byethrow';const success: Result.Success<number> = { type: 'Success', value: 42,}; Copy
import { Result } from '@praha/byethrow';const success: Result.Success<number> = { type: 'Success', value: 42,};
The type of the successful value.
Readonly
Represents a successful result.
Example