UNPKG

@microsoft/api-extractor

Version:

Validate, document, and review the exported API for a TypeScript library

15 lines (14 loc) 487 B
import { IAstItemOptions } from './AstItem'; import { AstMember } from './AstMember'; /** * This class is part of the AstItem abstract syntax tree. It represents properties of classes or interfaces * (It does not represent member methods) */ export declare class AstProperty extends AstMember { type: string; isStatic: boolean; isReadOnly: boolean; isEventProperty: boolean; constructor(options: IAstItemOptions); getDeclarationLine(): string; }