/** * @type Tag: Document representing a tag * * @property tagId: The ID of the tag. * */ export type Tag = { tagId: string; } & { [key: string]: any; };