6 lines
108 B
TypeScript
6 lines
108 B
TypeScript
import type { HostId } from './HostId';
|
|
export type BindId = {
|
|
id: HostId;
|
|
internalPort: number;
|
|
};
|