import { TypeInfo } from '../common/TypeInfo'; import { CommentInfo } from '../comment/CommentInfo'; export interface InterfaceIndexerInfo { key: string; value: TypeInfo; text: string; returnType: TypeInfo; trailingComments: CommentInfo[] | undefined; leadingComments: CommentInfo[] | undefined; }