7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
export interface IPort {
|
|
PrivatePort: 80;
|
|
Type: 'tcp';
|
|
}
|
|
|
|
export type TPorts = IPort[];
|