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

12 lines
264 B
TypeScript

import { TeamRequest } from "./TeamRequest"
/**
* Defines how a Team Collection is represented in the TeamCollectionAdapter
*/
export interface TeamCollection {
id: string
title: string
children: TeamCollection[] | null
requests: TeamRequest[] | null
}