import { GenericArgumentType } from './generic-argument-type.js'; import { PropertyType } from './property-type.js'; import { ConstructorParameter } from './constructor-parameter.js'; import { CodeBlock } from './code-block.js'; import { Import } from './import.js'; import { Decorator } from './decorator.js'; export interface ClassType { genericArguments?: Array | null; interfaceTypeIdentifiers?: Array | null; properties?: Array | null; constructorParameters?: Array | null; customCode?: Array | null; customImports?: Array | null; decorators?: Array | null; name?: string | null; path?: string | null; fileName?: string | null; typeIdentifier?: string | null; isAbstract?: boolean | null; comment?: string | null; baseClassTypeIdentifier?: string | null; } //# sourceMappingURL=class-type.d.ts.map