Skip to content

Commit 99bbaf2

Browse files
committed
Add summary fields to museumCollectionType
Added optional fields to museumCollectionType for totalFound, totalDelivered, total, and missingItemsText to support summary and status information for museum collections.
1 parent fabc908 commit 99bbaf2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/types/displayDataTypes.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ export type professionsType = {
4444
}
4545

4646
export type museumCollectionType = {
47+
totalFound?: number;
48+
totalDelivered?: number;
49+
total?: number;
50+
missingItemsText?: string | undefined;
4751
artifacts: generalFormatedItemType[];
4852
minerals: generalFormatedItemType[];
4953
}

0 commit comments

Comments
 (0)