docker/ts/interfaces/port.ts

7 lines
92 B
TypeScript
Raw Normal View History

2019-01-09 23:24:35 +00:00
export interface IPort {
PrivatePort: 80;
Type: 'tcp';
}
2019-01-09 23:28:12 +00:00
export type TPorts = IPort[];