RunnerAddress
Constructors
Models
RunnerAddress
Added in v1.0.0
Source
Signature
declare class RunnerAddress extends ReadonlySide<
{
readonly host: NonEmptyString;
readonly port: Int;
},
"Type"
> {
constructor(
...args: [
props: ReadonlyMakeIn<{
readonly host: NonEmptyString;
readonly port: Int;
}>,
options?: MakeOptions,
]
);
readonly [TypeId]: symbol;
[NodeInspectSymbol](): string;
"~effect/interfaces/Equal"(that: RunnerAddress): boolean;
"~effect/interfaces/Hash"(): any;
"~effect/interfaces/PrimaryKey"(): string;
toString(): string;
}