/**
 * Minimal entity interface
 */
export interface Entity {
  id: string;
  collectionId: string;
}
