ElectronicBabylonianLiterature/ebl-frontend

View on GitHub
src/bibliography/domain/referenceDto.ts

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
import { CslData } from './BibliographyEntry'

export interface ReferenceDto {
  readonly id: string
  readonly type:
    | 'DISCUSSION'
    | 'EDITION'
    | 'DISCUSSION'
    | 'COPY'
    | 'PHOTO'
    | 'TRANSLATION'
    | 'ARCHAEOLOGY'
  readonly pages: string
  readonly notes: string
  readonly linesCited: readonly string[]
  readonly document?: CslData | null
}