Files
hoppscotch/packages/hoppscotch-common/src/helpers/teams/TeamEnvironment.ts
2022-12-02 03:05:35 -05:00

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
}