7 lines
121 B
TypeScript
7 lines
121 B
TypeScript
export type SshKeyResponse = {
|
|
alg: string;
|
|
fingerprint: string;
|
|
hostname: string;
|
|
createdAt: string;
|
|
};
|