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