Interface Write<T>

Interface for writable ports.

interface Write<T> {
    set: ((value: T) => void);
}

Type Parameters

  • T

Hierarchy (view full)

Implemented by

Properties

Properties

set: ((value: T) => void)