UNPKG

py-uni

Version:

py-uni

15 lines (12 loc) 286 B
/** * */ import {ContentRepository} from "./contentRepository.domain"; export class ContentRepositorys { _Items: ContentRepository[]; constructor(options: { _Items?: ContentRepository[] } = {}) { this._Items = options._Items || []; } }