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