🏷️ fix types imports from a client component

This commit is contained in:
Fred KISSIE
2026-06-03 20:14:43 +02:00
parent 565727ad36
commit a21569bd00
3 changed files with 18 additions and 18 deletions

View File

@@ -0,0 +1,16 @@
export type SignSshKeyResponse = {
certificate?: string;
messageIds: number[];
messageId?: number;
sshUsername: string;
sshHost: string;
resourceId: number;
siteIds: number[];
siteId: number;
keyId?: string;
validPrincipals?: string[];
validAfter?: string;
validBefore?: string;
expiresIn?: number;
authDaemonMode: "site" | "remote" | "native" | null;
};