/** 정렬 방식 */ export type SortOrder = /** 내림차순 */ "DESC" /** 오름차순 */ | "ASC" | string & {};