import { PrimitiveType } from './primitive-type.js'; import { TemplateRef } from './template-ref.js'; import { Decorator } from './decorator.js'; export interface PropertyType { primitiveType?: PrimitiveType; templateRefs?: Array | null; commentTemplateRefs?: Array | null; decorators?: Array | null; name?: string | null; typeIdentifier?: string | null; type?: string | null; isOptional?: boolean; isInitializer?: boolean; comment?: string | null; } //# sourceMappingURL=property-type.d.ts.map