@timlassiter11/yatl
    Preparing search index...

    Type Alias ValueFormatterCallback<T>

    ValueFormatterCallback: (value: any, row: T) => string | null

    Callback for formatting the value of a cell. Called when the cell is created and when exporting to CSV.

    Type Parameters

    • T

    Type Declaration

      • (value: any, row: T): string | null
      • Parameters

        • value: any

          The value of the cell.

        • row: T

          The row data.

        Returns string | null