10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
/**
|
|
* Defines how a Teams request is represented in TeamCollectionAdapter
|
|
*/
|
|
export interface TeamRequest {
|
|
id: string
|
|
collectionID: string
|
|
title: string
|
|
request: any
|
|
}
|