import {LinkItem} from '~/domain/models/links/link' export interface LinkRepository { list(projectId: string): Promise create(projectId: string, link: LinkItem): Promise update(projectId: string, linkId: number, linkType: number): Promise bulkDelete(projectId: string, linkIds: number[]): Promise }