@5stones/onix
Version:
A strongly typed library for parsing ONIX feeds.
10 lines (9 loc) • 334 B
TypeScript
import { ResourceForm } from '../enums';
import { ContentDate } from './ContentDate';
import { ResourceVersionFeature } from './ResourceVersionFeature';
export interface ResourceVersion {
ResourceForm?: ResourceForm;
ResourceVersionFeature?: ResourceVersionFeature;
ResourceLink?: string;
ContentDate?: ContentDate;
}