refactor: improved teams migrations

This commit is contained in:
Andrew Bastin
2021-08-25 08:41:09 +05:30
parent 6e9f16d8f1
commit 31258b1108
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
import { HoppRESTRequest } from "../types/HoppRESTRequest"
/**
* Defines how a Teams request is represented in TeamCollectionAdapter
*/
@@ -5,5 +7,5 @@ export interface TeamRequest {
id: string
collectionID: string
title: string
request: any
request: HoppRESTRequest
}