UNPKG

@ts4ocds/lots

Version:

TS4OCDS is a library of TypeScript entities that takes an approach to befriend large OCDS JSONs with your per-project routine of writing whole lotta interfaces for them.

19 lines (15 loc) 508 B
/** * @packageDocumentation * @module Lots */ import * as Core from '@ts4ocds/core/award'; import type { Initializer } from '@ts4ocds/utils'; import { WithRelatedLots } from '../mixins'; /** * If this award relates to one or more specific {@link Lot.Lot | lots}, provide the {@link Lot.id | identifier(s)} of the related {@link Lot.Lot | lot(s)} here. */ export class Award extends WithRelatedLots(Core.Award) { public constructor(initializer: Initializer<Award>) { super(initializer); } }