import { PrimitiveType } from './primitive-type.js'; import { TemplateRef } from './template-ref.js'; export interface ConstructorParameter { primitiveType?: PrimitiveType; templateRefs?: Array | null; name?: string | null; typeIdentifier?: string | null; type?: string | null; isOptional?: boolean | null; } //# sourceMappingURL=constructor-parameter.d.ts.map