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