mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { Email } from '../../Common/Email'
|
|
import { Uuid } from '../../Common/Uuid'
|
|
|
|
export type GetUserAnalyticsIdResponse = {
|
|
analyticsId: number
|
|
userEmail: Email
|
|
userUuid: Uuid
|
|
}
|