UNPKG

@microsoft/api-extractor

Version:

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

13 lines (12 loc) 433 B
import { AstItem, IAstItemOptions } from './AstItem'; /** * This class is part of the AstItem abstract syntax tree. It represents a TypeScript enum value. * The parent container will always be an AstEnum instance. */ export declare class AstEnumValue extends AstItem { constructor(options: IAstItemOptions); /** * Returns a text string such as "MyValue = 123," */ getDeclarationLine(): string; }