Files
hoppscotch/packages/hoppscotch-app/helpers/teams/TeamRequest.ts
2021-09-10 00:28:28 +05:30

12 lines
251 B
TypeScript

import { HoppRESTRequest } from "../types/HoppRESTRequest"
/**
* Defines how a Teams request is represented in TeamCollectionAdapter
*/
export interface TeamRequest {
id: string
collectionID: string
title: string
request: HoppRESTRequest
}