docker/ts/interfaces/port.ts
2019-01-10 00:24:35 +01:00

6 lines
91 B
TypeScript

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