mirror of
https://github.com/standardnotes/server
synced 2026-09-21 15:13:04 -04:00
8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
export type SimpleUserProjection = {
|
|
uuid: string
|
|
email: string
|
|
protocolVersion: string
|
|
publicKey?: string
|
|
encryptedPrivateKey?: string
|
|
}
|