anvil/striker-ui/types/APISSHKey.d.ts

15 lines
302 B
TypeScript
Raw Normal View History

type APISSHKeyConflictOverview = {
[stateUUID: string]: {
badFile: string;
badLine: number;
hostName: string;
hostUUID: string;
ipAddress: string;
stateUUID: string;
};
};
type APISSHKeyConflictOverviewList = {
[hostUUID: 'local' | string]: APISSHKeyConflictOverview;
};