fantasia-archive/src/interfaces/I_OpenedDocument.ts

40 lines
747 B
TypeScript

export interface I_ExtraDocumentFields{
id: string
value: any
type?: string
}
export interface I_OpenedDocument{
_id: string
_rev?: string
editMode: boolean
type: string
icon: string
hasEdits: boolean
isNew: boolean
url: string
extraFields: I_ExtraDocumentFields[]
}
export interface I_ShortenedDocument{
label: string
icon: string
type: string
url: string
expandable?: boolean
_id: string
hierarchicalPath?: string
isCategory?: boolean
parentDoc: string | false
children: I_ShortenedDocument[]
extraFields: I_ExtraDocumentFields[]
color?: string
tags?: string[]
activeTypeSearch?: boolean
filteredOut?: boolean
exactMatch?: boolean
fullWordMatch?: number
partialWordMatch?: number
}