misc_pterodactyl-panel/resources/scripts/api/definitions/user/models.d.ts

9 lines
166 B
TypeScript
Raw Normal View History

import { Model } from '@/api/definitions';
interface SSHKey extends Model {
name: string;
publicKey: string;
fingerprint: string;
createdAt: Date;
}