Files
standardnotes-server/packages/analytics/src/Domain/Revenue/RevenueModificationRepositoryInterface.ts
T

8 lines
312 B
TypeScript

import { Uuid } from '../Common/Uuid'
import { RevenueModification } from './RevenueModification'
export interface RevenueModificationRepositoryInterface {
findLastByUserUuid(userUuid: Uuid): Promise<RevenueModification | null>
save(revenueModification: RevenueModification): Promise<RevenueModification>
}