import { OrganizationId, TesthubId, UserId, ExecutorOrCreator } from 'teambition-types'; import { CommonGroupSchema } from './CommonGroup'; export interface TesthubSchema { _id: TesthubId; _creatorId: UserId; _organizationId: OrganizationId; created: string; creator: ExecutorOrCreator; description: string; groups: CommonGroupSchema[]; logo: string; name: string; updated: string; }