dclint
Version:
A command-line tool for validating and enforcing best practices in Docker Compose files.
8 lines (7 loc) • 364 B
TypeScript
declare const extractPublishedPortValueWithProtocol: (yamlNode: unknown) => {
port: string;
protocol: string;
};
declare const extractPublishedPortInterfaceValue: (yamlNode: unknown) => string;
declare const parsePortsRange: (port: string) => string[];
export { extractPublishedPortValueWithProtocol, extractPublishedPortInterfaceValue, parsePortsRange };