6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import type { GatewayId } from './GatewayId';
|
|
export type CheckPortParams = {
|
|
port: number;
|
|
gateway: GatewayId;
|
|
};
|