Files
standardnotes-app-web/packages/models/src/Domain/Abstract/Reference/AnonymousReference.ts
2022-07-05 20:58:23 +02:00

9 lines
240 B
TypeScript

import { ContentType } from '@standardnotes/common'
import { ContenteReferenceType } from './ContenteReferenceType'
export interface AnonymousReference {
uuid: string
content_type: ContentType
reference_type: ContenteReferenceType
}