10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import type { HostId } from './HostId';
|
|
export type AddressInfo = {
|
|
username: string | null;
|
|
hostId: HostId;
|
|
internalPort: number;
|
|
scheme: string | null;
|
|
sslScheme: string | null;
|
|
suffix: string;
|
|
};
|