UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

10 lines (9 loc) 301 B
export type ForwardingRuleProtocol = 'http' | 'https' | 'http2' | 'tcp'; export interface IForwardingRule { certificate_id?: string; entry_port: number; entry_protocol: string; target_port: number; target_protocol: ForwardingRuleProtocol | string; tls_passthrough?: boolean; }