6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import type { Host } from './Host';
|
|
import type { HostId } from './HostId';
|
|
export type Hosts = {
|
|
[key: HostId]: Host;
|
|
};
|