frontend/src/modelTypes/ITeamNamespace.ts

6 lines
188 B
TypeScript
Raw Permalink Normal View History

2022-08-04 18:57:43 +00:00
import type {ITeamShareBase} from './ITeamShareBase'
import type {INamespace} from './INamespace'
export interface ITeamNamespace extends ITeamShareBase {
namespaceId: INamespace['id']
}