@rightcapital/phpdoc-parser
Version:
TypeScript version of PHPDoc parser with support for intersection types and generics
11 lines (10 loc) • 388 B
TypeScript
import { ConstExprStringNode } from './const-expr-string-node';
export declare class QuoteAwareConstExprStringNode extends ConstExprStringNode {
static readonly SINGLE_QUOTED = 1;
static readonly DOUBLE_QUOTED = 2;
quoteType: number;
constructor(value: string, quoteType: number);
toString(): string;
private escapeDoubleQuotedString;
getNodeType(): string;
}