Refactor types organization for table component

This commit is contained in:
Alexander Navarro 2023-11-11 11:24:51 -03:00
parent deb95b355f
commit c0683dafb3
12 changed files with 1490 additions and 1195 deletions

View file

@ -5,7 +5,7 @@ interface Page {
current: boolean;
}
export interface IUsePagination<T> {
interface IUsePagination<T> {
items: T[];
changeOffset: (offset: Offset, newValue?: number) => void;
/**