Files
hoppscotch/packages/hoppscotch-common/src/helpers/teams/TeamRequest.ts
2022-12-02 03:05:35 -05:00

12 lines
243 B
TypeScript

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