Files
tsclass/ts/network/ssh.ts

5 lines
85 B
TypeScript
Raw Normal View History

2024-02-09 16:39:37 +01:00
export interface ISshKey {
keyName: string;
public: string;
private?: string;
}