UNPKG

@rightcapital/phpdoc-parser

Version:

TypeScript version of PHPDoc parser with support for intersection types and generics

9 lines (8 loc) 288 B
import type { ConstExprNode } from '../const-expr/const-expr-node'; import { TypeNode } from './type-node'; export declare class ConstTypeNode extends TypeNode { constExpr: ConstExprNode; constructor(constExpr: ConstExprNode); toString(): string; getNodeType(): string; }