@timlassiter11/yatl
    Preparing search index...

    Interface TableClasses

    Defines CSS classes to be applied to different parts of the table.

    interface TableClasses {
        mark?: string | string[];
        scroller?: string | string[];
        tbody?: string | string[];
        td?: string | string[];
        th?: string | string[];
        thead?: string | string[];
        tr?: string | string[];
    }
    Index

    Properties

    mark?: string | string[]

    Classes for the mark elements used to highligh search results.

    scroller?: string | string[]

    Classes for the scroller element.

    tbody?: string | string[]

    Classes for the tbody element.

    td?: string | string[]

    Classes for each cell element.

    th?: string | string[]

    Classes for each header element.

    thead?: string | string[]

    Classes for the thead element.

    tr?: string | string[]

    Classes for each table row element.