export interface ITCPListenerOptions { readonly portRange?: number[]; readonly port?: number; readonly host: string; readonly exposeHost?: string; } export interface INodeOptions extends IServiceOptions { } export interface ILabels { readonly [key: string]: string; } export interface IServiceOptions extends IWorkerOptions { readonly labels?: ILabels; } export interface IWorkerOptions { readonly alias?: string; } export interface IRuntimeOptions { readonly scope: string; } //# sourceMappingURL=config.d.ts.map