mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
import { User } from '../User/User'
|
|
|
|
export type UpdateUserDTO = {
|
|
user: User
|
|
apiVersion: string
|
|
updatedWithUserAgent: string
|
|
}
|