TeamRequest.ts 243 B

1234567891011
  1. import { HoppRESTRequest } from "@hoppscotch/data"
  2. /**
  3. * Defines how a Teams request is represented in TeamCollectionAdapter
  4. */
  5. export interface TeamRequest {
  6. id: string
  7. collectionID: string
  8. title: string
  9. request: HoppRESTRequest
  10. }