8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import { Model } from '@/api/definitions';
|
|
|
|
interface SSHKey extends Model {
|
|
name: string;
|
|
publicKey: string;
|
|
fingerprint: string;
|
|
createdAt: Date;
|
|
}
|