updated docs
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
interface LowerPaginationProps {
|
||||
pagination: any;
|
||||
handleBack: () => void;
|
||||
handleNext: () => void;
|
||||
}
|
||||
|
||||
interface PaginationProps {
|
||||
apiPagination: any;
|
||||
pagination: any;
|
||||
setPagination: (pagination: any) => void;
|
||||
defaultPagination: any;
|
||||
}
|
||||
|
||||
interface PaginationDetailsProps {
|
||||
pagination: any;
|
||||
setPagination: (pagination: any) => void;
|
||||
defaultPagination: any;
|
||||
}
|
||||
interface PaginationShowProps {
|
||||
apiPagination: any;
|
||||
}
|
||||
|
||||
|
||||
export type {
|
||||
PaginationProps,
|
||||
LowerPaginationProps,
|
||||
PaginationDetailsProps,
|
||||
PaginationShowProps,
|
||||
};
|
||||
Reference in New Issue
Block a user