UNPKG

@5stones/onix

Version:

A strongly typed library for parsing ONIX feeds.

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