src/app/core/models/meta-data.ts
Interface for a metadata field
label: string
string
Name of field
value: string
Value of field
export interface MetaDataField { /** Name of field */ label: string; /** Value of field */ value?: string; } /** Export metadata type as array of metadata field objects */ export type MetaData = MetaDataField[];