mirror of
https://github.com/standardnotes/server
synced 2026-08-02 21:15:59 -04:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { ContentType, RoleName } from '@standardnotes/common'
|
|
|
|
export type SimpleRevisionProjection = {
|
|
uuid: string
|
|
content_type: ContentType | null
|
|
required_role: RoleName
|
|
created_at: string
|
|
updated_at: string
|
|
}
|