import CommonRepo from 'jscommons/dist/repoFactory/Repo'; import DeleteProfileContentOptions from './options/DeleteProfileContentOptions'; import GetProfileContentOptions from './options/GetProfileContentOptions'; import StoreProfileContentOptions from './options/StoreProfileContentOptions'; import GetProfileContentResult from './results/GetProfileContentResult'; interface Repo extends CommonRepo { readonly deleteProfileContent: (opts: DeleteProfileContentOptions) => Promise; readonly getProfileContent: (opts: GetProfileContentOptions) => Promise; readonly storeProfileContent: (opts: StoreProfileContentOptions) => Promise; } export default Repo;