Files
hoppscotch/helpers/teams/TeamRequest.ts
2021-05-05 10:44:17 -04:00

10 lines
183 B
TypeScript

/**
* Defines how a Teams request is represented in TeamCollectionAdapter
*/
export interface TeamRequest {
id: string;
collectionID: string;
title: string;
request: any;
}