8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
export type PassthroughInfo = {
|
|
hostname: string;
|
|
listenPort: number;
|
|
backend: string;
|
|
publicGateways: string[];
|
|
privateIps: string[];
|
|
};
|