UNPKG

py-uni

Version:

py-uni

11 lines (9 loc) 219 B
import {Content} from "./content.domain"; export class Contents{ _Items: Content[]; constructor(options: { _Items?: Content[] } = {}) { this._Items = options._Items || []; } }