import { TheaterEntity } from '../entities/theater.entity' export abstract class TheaterRepositoryPort { public abstract findAll(): Promise public abstract findById( id: TheaterEntity['id'] ): Promise public abstract create( data: Pick ): Promise }