UNPKG
dont-throw
Version:
latest (0.0.2)
0.0.2
0.0.1
Don't throw utilities
github.com/thekhanj/dont-throw
thekhanj/dont-throw
dont-throw
/
dist
/
result.d.ts
8 lines
(7 loc)
•
124 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
type
Result<T
=
unknown,
E
=
unknown>
=
{
success:
true
;
data:
T;
}
|
{
success:
false
;
error:
E;
}
;