11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
import { Environment } from "@hoppscotch/data"
|
|
|
|
/**
|
|
* Defines how a Team Environment is represented in the TeamEnvironmentAdapter
|
|
*/
|
|
export interface TeamEnvironment {
|
|
id: string
|
|
teamID: string
|
|
environment: Environment
|
|
}
|