Files
hoppscotch/helpers/teams/TeamCollection.ts
2021-05-09 05:30:31 +00:00

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
}