import { RawInterface } from './rawInterface'; import { ConnectionInterface } from './connectionInterface'; import { DeleteAllInterface } from './deleteAllInterface'; import { InsertInterface } from './insertInterface'; import { SelectAllInterface } from './selectAllInterface'; import { SelectInterface } from './selectInterface'; import { SelectPaginationInterface } from './selectPaginationInterface'; import { ViewPaginationInterface } from './viewPaginationInterface'; import { UpdateInterface } from './updateInterface'; import { DeleteInterface } from './deleteInterface'; export interface RepositoryProviderInterface extends ConnectionInterface, RawInterface, DeleteAllInterface, InsertInterface, SelectAllInterface, SelectInterface, SelectPaginationInterface, ViewPaginationInterface, UpdateInterface, DeleteInterface { }