UNPKG

dgeni-packages

Version:

A collection of dgeni packages for generating documentation from source code

19 lines (18 loc) 692 B
import { Declaration } from 'typescript'; import { Host } from '../services/ts-host/host'; import { MethodMemberDoc } from './MethodMemberDoc'; import { PropertyMemberDoc } from './PropertyMemberDoc'; /** * This represents a getter or setter overload of an accessor property. * There will be a PropertyMemberDoc that contains these docs. */ export declare class AccessorInfoDoc extends MethodMemberDoc { accessorType: 'get' | 'set'; propertyDoc: PropertyMemberDoc; docType: string; name: string; id: string; aliases: string[]; anchor: string; constructor(host: Host, accessorType: 'get' | 'set', propertyDoc: PropertyMemberDoc, declaration: Declaration); }