Files
standardnotes-server/packages/auth/src/Bootstrap/AuthServiceInterface.ts
T

10 lines
274 B
TypeScript

import { Result, ServiceInterface } from '@standardnotes/domain-core'
export interface AuthServiceInterface extends ServiceInterface {
activatePremiumFeatures(dto: {
username: string
subscriptionPlanName?: string
endsAt?: Date
}): Promise<Result<string>>
}