tw-table
Version:
table designed with tailwind and tanstack-table.
27 lines (26 loc) • 596 B
TypeScript
import { DeepPartial } from "../types/DeepPartial";
export declare const uiTexts: {
empty: string;
sort: {
by: string;
dir: string;
desc: string;
asc: string;
};
search: {
label: string;
placeholder: string;
};
pagination: {
previous: string;
next: string;
page: string;
of: string;
show: string;
showing: string;
rows: string;
};
};
declare type _UITexts = typeof uiTexts;
export declare type UITexts = DeepPartial<_UITexts>;
export {};