This commit is contained in:
focp212@naver.com
2025-10-26 01:28:47 +09:00
parent 7e5f1e71a7
commit 00aec7656e
34 changed files with 930 additions and 319 deletions

View File

@@ -5,7 +5,6 @@ export const DEFAULT_PAGE_PARAM = {
cursor: null,
size: 20,
sortType: SortTypeKeys.LATEST,
limit: 0
};
export const FilterMotionVariants = {

View File

@@ -23,7 +23,6 @@ export interface DefaultRequestPagination {
cursor: string | null;
size: number;
sortType: SortTypeKeys;
limit: number;
};
export interface DefaulResponsePagination {
nextCursor: string | null;