interface ISearchCondition { keywords: string | null; limit: number | null; offSet: number | null; } export default ISearchCondition;