JSDoc, closes #5874

This commit is contained in:
Tom Moor
2023-09-23 14:31:55 -04:00
parent 3f11b014c5
commit 5c7c9ceeb1
15 changed files with 28 additions and 30 deletions

View File

@@ -391,15 +391,15 @@ export type NotificationMetadata = {
};
export type JSONExportMetadata = {
/* The version of the export, allows updated structure in the future. */
/** The version of the export, allows updated structure in the future. */
exportVersion: number;
/* The version of the application that created the export. */
/** The version of the application that created the export. */
version: string;
/* The date the export was created. */
/** The date the export was created. */
createdAt: string;
/* The ID of the user that created the export. */
/** The ID of the user that created the export. */
createdById: string;
/* The email of the user that created the export. */
/** The email of the user that created the export. */
createdByEmail: string | null;
};