UNPKG

@5stones/onix

Version:

A strongly typed library for parsing ONIX feeds.

9 lines (8 loc) 233 B
import { ContentAudience } from '../enums'; import { TextType } from '../enums'; import { Text } from './Text'; export interface TextContentElement { TextType?: TextType; ContentAudience?: ContentAudience; Text?: Text; }