import { CoreEntity } from '../core/entity'; import { Watchable } from '../core/watchable'; export interface Group extends CoreEntity, Watchable { name: string; image: string; admins: string[]; price: number; }