Variable slotConst

    slot: {
        int: (cell: Writable<Num>, name?: string) => Slot<number>;
        num: (cell: Writable<Num>, name?: string) => Slot<number>;
        pick: (
            cell: Writable<Str>,
            options: readonly string[],
            name?: string,
        ) => Slot<string>;
        str: (cell: Writable<Str>, name?: string) => Slot<string>;
    } = ...

    Slot constructors that infer the codec from the cell's value class.

    Type Declaration