mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - ssh-keys
This commit is contained in:
11
resources/js/types/ssh-key.d.ts
vendored
Normal file
11
resources/js/types/ssh-key.d.ts
vendored
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user