Interface Slot<T>

    A typed hole: the parent cell plus its string ⇄ T codec.

    interface Slot<T> {
        cell: Writable<Read<T>>;
        codec: Codec<T>;
        name: string;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    cell: Writable<Read<T>>
    codec: Codec<T>
    name: string