mirror of
https://github.com/standardnotes/server
synced 2026-08-03 06:15:59 -04:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
import { Uuid } from '@standardnotes/common'
|
|
|
|
export type GetUserFeaturesDto =
|
|
| {
|
|
userUuid: Uuid
|
|
offline: false
|
|
}
|
|
| {
|
|
email: string
|
|
offline: true
|
|
}
|