style: format all source files with Prettier

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
DevContainer User
2026-03-04 00:55:42 +00:00
parent 8390aeb5df
commit b0ad4e3102
14 changed files with 255 additions and 197 deletions
+1 -3
View File
@@ -16,9 +16,7 @@ type KubeObjectInterface = K8s.cluster.KubeObjectInterface;
* return Ok(a / b);
* }
*/
export type Result<T, E = Error> =
| { ok: true; value: T }
| { ok: false; error: E };
export type Result<T, E = Error> = { ok: true; value: T } | { ok: false; error: E };
/**
* Async result type for promises that can fail