UNPKG

@wildboar/rose

Version:
22 lines (21 loc) 563 B
import { ConsumerPerforms } from './ConsumerPerforms.osa.mjs'; import { SupplierPerforms } from './SupplierPerforms.osa.mjs'; /** * @summary AllOperations * @description * * **This production was manually written in TypeScript.** * * ### ASN.1 Definition: * * ```asn1 * AllOperations{OPERATION-PACKAGE:package} OPERATION ::= {ConsumerPerforms{package} | SupplierPerforms{package}} * ``` */ export function AllOperations(package_) { return [ ...ConsumerPerforms(package_), ...SupplierPerforms(package_), ]; } /* eslint-enable */