chore(ui): knip

This commit is contained in:
psychedelicious
2024-12-17 12:55:18 +10:00
parent 09fc60acb0
commit 25ff7918e8

View File

@@ -57,7 +57,7 @@ export class Err<E> {
* @template T The type of the value in the `Ok` case.
* @template E The type of the error in the `Err` case.
*/
export type Result<T, E = Error> = Ok<T> | Err<E>;
type Result<T, E = Error> = Ok<T> | Err<E>;
/**
* Creates a successful result.