@timlassiter11/yatl
    Preparing search index...

    Type Alias CellRenderCallback<T>

    CellRenderCallback: (
        value: unknown,
        field: NestedKeyOf<T>,
        row: T,
    ) => Renderable

    Callback for providing the full contents of a rendered cell.

    Type Parameters

    Type Declaration

      • (value: unknown, field: NestedKeyOf<T>, row: T): Renderable
      • Parameters

        • value: unknown

          The value of the cell.

        • field: NestedKeyOf<T>

          The field of the column.

        • row: T

          The row data.

        Returns Renderable

        • Should return an HTMLElement or anything Lit can render