mirror of
https://github.com/standardnotes/server
synced 2026-08-01 17:17:00 -04:00
16 lines
362 B
TypeScript
16 lines
362 B
TypeScript
import { ContentType } from '@standardnotes/common'
|
|
|
|
export type RevisionProjection = {
|
|
uuid: string
|
|
item_uuid: string
|
|
content: string | null
|
|
content_type: ContentType | null
|
|
items_key_id: string | null
|
|
enc_item_key: string | null
|
|
auth_hash: string | null
|
|
creation_date: string
|
|
required_role: string
|
|
created_at: string
|
|
updated_at: string
|
|
}
|