6 lines
188 B
TypeScript
6 lines
188 B
TypeScript
|
import type {ITeamShareBase} from './ITeamShareBase'
|
||
|
import type {INamespace} from './INamespace'
|
||
|
|
||
|
export interface ITeamNamespace extends ITeamShareBase {
|
||
|
namespaceId: INamespace['id']
|
||
|
}
|