9 lines
238 B
TypeScript
9 lines
238 B
TypeScript
import { ContentType } from '@standardnotes/common'
|
|
import { ContentReferenceType } from './ContenteReferenceType'
|
|
|
|
export interface AnonymousReference {
|
|
uuid: string
|
|
content_type: ContentType
|
|
reference_type: ContentReferenceType
|
|
}
|