docker/ts/interfaces/port.ts
2019-01-10 00:28:12 +01:00

7 lines
92 B
TypeScript

export interface IPort {
PrivatePort: 80;
Type: 'tcp';
}
export type TPorts = IPort[];