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

12 lines
269 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;
}