import { StackEntity } from 'src/entities/stack.entity'; export const IStackRepository = 'IStackRepository'; export interface IStackRepository { create(stack: Partial & { ownerId: string }): Promise; update(stack: Pick & Partial): Promise; delete(id: string): Promise; getById(id: string): Promise; }