12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
import { Role } from '@standardnotes/security'
|
|
|
|
export type DeprecatedResponseMeta = {
|
|
auth: {
|
|
userUuid?: string
|
|
roles?: Role[]
|
|
}
|
|
server: {
|
|
filesServerUrl?: string
|
|
}
|
|
}
|