Skip to main content Link Search Menu Expand Document (external link)

SocketServer.ts overview

Since v1.0.0


Exports Grouped by Category


errors

ErrorTypeId

Signature

declare const ErrorTypeId: unique symbol

Source

Since v1.0.0

ErrorTypeId (type alias)

Signature

type ErrorTypeId = typeof ErrorTypeId

Source

Since v1.0.0

SocketServerError (class)

Signature

declare class SocketServerError

Source

Since v1.0.0

[ErrorTypeId] (property)

Signature

readonly [ErrorTypeId]: unique symbol

Source

Since v1.0.0

models

Address (type alias)

Signature

type Address = UnixAddress | TcpAddress

Source

Since v1.0.0

TcpAddress (interface)

Signature

export interface TcpAddress {
  readonly _tag: "TcpAddress"
  readonly hostname: string
  readonly port: number
}

Source

Since v1.0.0

UnixAddress (interface)

Signature

export interface UnixAddress {
  readonly _tag: "UnixAddress"
  readonly path: string
}

Source

Since v1.0.0

tags

SocketServer (class)

Signature

declare class SocketServer

Source

Since v1.0.0