UNPKG

@weiliang79/ubl-builder

Version:

Tool to create xml documents with UBL 2.1 standard

15 lines 678 B
import GenericAggregateComponent from './GenericAggregateComponent'; import { UdtIdentifier, UdtDate } from '../types/UnqualifiedDataTypes'; type AllowedParams = { /** An identifier for the referenced project. */ id: string | UdtIdentifier; /** A universally unique identifier for the referenced project */ uuid: string | UdtIdentifier; /** The date on which the referenced project was issued */ issueDate: string | UdtDate; }; declare class ProjectReference extends GenericAggregateComponent { constructor(content: AllowedParams); } export { ProjectReference, AllowedParams as ProjectReferenceParams }; //# sourceMappingURL=ProjectReference.d.ts.map