Skip to content

RunnerAddress

4 exports Added in v1.0.0 Source

Constructors

make

Added in v1.0.0 Source

Signature

declare function make(host: string, port: number): RunnerAddress;

Models

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;
}

Type Ids

TypeId

Added in v1.0.0 Source

Signature

declare const TypeId: unique symbol;

TypeId type

Added in v1.0.0 Source

Signature

type TypeId = typeof TypeId;