types.ts 175 B

123456789101112
  1. export type SearchParams = {
  2. keywords?: string
  3. page?: number
  4. limit?: number
  5. }
  6. export type EducationAddParams = {
  7. token: string
  8. institution: string
  9. role: string
  10. }