docker/ts/interfaces/port.ts

6 lines
91 B
TypeScript
Raw Normal View History

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