UNPKG

py-uni

Version:

py-uni

14 lines (12 loc) 253 B
/** * */ import {ContentType} from "./contentType.domain"; export class ContentTypes{ _Items: ContentType[]; constructor(options: { _Items?: ContentType[] } = {}) { this._Items = options._Items || []; } }