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

6 lines
207 B
TypeScript

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