Type Parameters
T
T
E
E = ErrorDocumentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
type Result<T, E> =
| {
ok: true;
value: T;
}
| {
error: E;
ok: false;
};
T
E = Error