@microsoft/api-extractor
Version:
Validate, document, and review the exported API for a TypeScript library
10 lines (9 loc) • 374 B
TypeScript
import AstItemContainer from './AstItemContainer';
import { IAstItemOptions } from './AstItem';
/**
* This class is part of the AstItem abstract syntax tree. It represents a TypeScript enum definition.
* The individual enum values are represented using AstEnumValue.
*/
export default class AstEnum extends AstItemContainer {
constructor(options: IAstItemOptions);
}