mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 04:04:45 +02:00
9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import { Model } from '@/api/definitions';
|
|
|
|
interface SSHKey extends Model {
|
|
name: string;
|
|
publicKey: string;
|
|
fingerprint: string;
|
|
createdAt: Date;
|
|
}
|