mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
9 lines
318 B
TypeScript
9 lines
318 B
TypeScript
import { FeatureDescription } from '@standardnotes/features'
|
|
|
|
import { User } from '../User/User'
|
|
|
|
export interface FeatureServiceInterface {
|
|
getFeaturesForUser(user: User): Promise<Array<FeatureDescription>>
|
|
getFeaturesForOfflineUser(email: string): Promise<{ features: FeatureDescription[]; roles: string[] }>
|
|
}
|