Skip to content

Commit

Permalink
add isPostCanonical property
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonjetz committed Feb 5, 2024
1 parent 9174cc1 commit 25d4fcf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/fragmentarium/domain/archaeology.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export type DateRange = {
start: PartialDate
end?: PartialDate | null
notes?: string | null
isPostCanonical?: boolean | null
}
function pad(s?: string | number | null, left = ' ', right = ' '): string {
return s ? `${left}${s}${right}` : ''
Expand Down

0 comments on commit 25d4fcf

Please sign in to comment.