Interface TextLabelsType

interface TextLabelsType {
    body: { noMatch: ReactNode; toolTip: string };
    filter: { all: string; reset: string; title: string };
    pagination: {
        displayRows: string;
        jumpToPage: string;
        next: string;
        previous: string;
        rowsPerPage: string;
    };
    selectedRows: { delete: string; deleteAria: string; text: string };
    toolbar: {
        downloadCsv: string;
        filterTable: string;
        print: string;
        search: string;
        viewColumns: string;
    };
    viewColumns: { title: string; titleAria: string };
}

Properties

body: { noMatch: ReactNode; toolTip: string }
filter: { all: string; reset: string; title: string }
pagination: {
    displayRows: string;
    jumpToPage: string;
    next: string;
    previous: string;
    rowsPerPage: string;
}
selectedRows: { delete: string; deleteAria: string; text: string }
toolbar: {
    downloadCsv: string;
    filterTable: string;
    print: string;
    search: string;
    viewColumns: string;
}
viewColumns: { title: string; titleAria: string }