This commit is contained in:
Saeed Vaziry
2025-05-19 20:55:32 +02:00
parent cdc012c270
commit 04d52f6742
10 changed files with 333 additions and 21 deletions

11
resources/js/types/ssh-key.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
import { User } from '@/types/user';
export interface SSHKey {
id: number;
user?: User;
name: string;
created_at: string;
updated_at: string;
[key: string]: unknown;
}