chore: fix tiny nits

This commit is contained in:
Aarnav Tale 2025-06-09 17:48:55 -04:00
parent 721439868f
commit 6a0e097412
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -1,3 +1,4 @@
import type { PreAuthKey } from './PreAuthKey';
import type { User } from './User';
export interface Machine {
@ -12,7 +13,7 @@ export interface Machine {
lastSeen: string;
expiry: string | null;
preAuthKey?: unknown; // TODO
preAuthKey?: PreAuthKey;
createdAt: string;
registerMethod: