anvil/striker-ui/types/APISSHKey.d.ts
2022-11-28 14:37:21 -05:00

15 lines
302 B
TypeScript

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