Type Alias ApiListResponse<T>

ApiListResponse: { count: Count<T>; data: T[]; next?: string }

Type Parameters

  • T = unknown

Type declaration

  • count: Count<T>

    Total number of matches

  • data: T[]

    Array of matching objects

  • Optionalnext?: string