Refactoring code module 03_logs

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-09 15:28:53 +07:00
parent c11ff006eb
commit 2e9bbe3dd1
5 changed files with 115 additions and 113 deletions

View file

@ -1,5 +1,11 @@
interface Pagination {
page: number;
rowsPerPage: number;
}
export type { Pagination };
interface ItemsDropdown {
labal: string;
val: string;
}
export type { Pagination, ItemsDropdown };