Files
hoppscotch/helpers/teams/TeamRequest.ts
2021-08-25 08:41:09 +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
}