Files
Laca-City/backend/node_modules/@microsoft/tsdoc/lib/parser/NodeParser.d.ts
PhongPham c65cc97a33 🎯 MapView v2.0 - Global Deployment Ready
 MAJOR FEATURES:
• Auto-zoom intelligence với smart bounds fitting
• Enhanced 3D GPS markers với pulsing effects
• Professional route display với 6-layer rendering
• Status-based parking icons với availability indicators
• Production-ready build optimizations

🗺️ AUTO-ZOOM FEATURES:
• Smart bounds fitting cho GPS + selected parking
• Adaptive padding (50px) cho visual balance
• Max zoom control (level 16) để tránh quá gần
• Dynamic centering khi không có selection

🎨 ENHANCED VISUALS:
• 3D GPS marker với multi-layer pulse effects
• Advanced parking icons với status colors
• Selection highlighting với animation
• Dimming system cho non-selected items

🛣️ ROUTE SYSTEM:
• OpenRouteService API integration
• Multi-layer route rendering (glow, shadow, main, animated)
• Real-time distance & duration calculation
• Visual route info trong popup

📱 PRODUCTION READY:
• SSR safe với dynamic imports
• Build errors resolved
• Global deployment via Vercel
• Optimized performance

🌍 DEPLOYMENT:
• Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app
• Bundle size: 22.8 kB optimized
• Global CDN distribution
• HTTPS enabled

💾 VERSION CONTROL:
• MapView-v2.0.tsx backup created
• MAPVIEW_VERSIONS.md documentation
• Full version history tracking
2025-07-20 19:52:16 +07:00

91 lines
3.3 KiB
TypeScript

import type { ParserContext } from './ParserContext';
/**
* The main parser for TSDoc comments.
*/
export declare class NodeParser {
private readonly _parserContext;
private readonly _configuration;
private _currentSection;
constructor(parserContext: ParserContext);
parse(): void;
private _performValidationChecks;
private _validateTagDefinition;
private _pushAccumulatedPlainText;
private _parseAndPushBlock;
private _addBlockToDocComment;
/**
* Used by `_parseParamBlock()`, this parses a JSDoc expression remainder like `string}` or `="]"]` from
* an input like `@param {string} [x="]"] - the X value`. It detects nested balanced pairs of delimiters
* and escaped string literals.
*/
private _tryParseJSDocTypeOrValueRest;
/**
* Used by `_parseParamBlock()`, this parses a JSDoc expression like `{string}` from
* an input like `@param {string} x - the X value`.
*/
private _tryParseUnsupportedJSDocType;
/**
* Used by `_parseParamBlock()`, this parses a JSDoc expression remainder like `=[]]` from
* an input like `@param {string} [x=[]] - the X value`.
*/
private _tryParseJSDocOptionalNameRest;
private _parseParamBlock;
private _pushNode;
private _parseBackslashEscape;
private _parseBlockTag;
private _parseInlineTag;
private _parseInheritDocTag;
private _parseLinkTag;
private _parseLinkTagUrlDestination;
private _parseLinkTagCodeDestination;
private _parseDeclarationReference;
private _parseMemberReference;
private _parseMemberSymbol;
private _parseMemberIdentifier;
private _parseMemberSelector;
private _parseHtmlStartTag;
private _parseHtmlAttribute;
private _parseHtmlString;
private _parseHtmlEndTag;
/**
* Parses an HTML name such as an element name or attribute name.
*/
private _parseHtmlName;
private _parseFencedCode;
private _parseCodeSpan;
private _tryReadSpacingAndNewlines;
/**
* Read the next token, and report it as a DocErrorText node.
*/
private _createError;
/**
* Rewind to the specified marker, read the next token, and report it as a DocErrorText node.
*/
private _backtrackAndCreateError;
/**
* Rewind to the errorStartMarker, read the tokens up to and including errorInclusiveEndMarker,
* and report it as a DocErrorText node.
*/
private _backtrackAndCreateErrorRange;
/**
* Rewind to the specified marker, read the next token, and report it as a DocErrorText node
* whose location is based on an IFailure.
*/
private _backtrackAndCreateErrorForFailure;
/**
* Rewind to the errorStartMarker, read the tokens up to and including errorInclusiveEndMarker,
* and report it as a DocErrorText node whose location is based on an IFailure.
*/
private _backtrackAndCreateErrorRangeForFailure;
/**
* Creates an IFailure whose TokenSequence is a single token. If a marker is not specified,
* then it is the current token.
*/
private _createFailureForToken;
/**
* Creates an IFailure whose TokenSequence starts from the specified marker and
* encompasses all tokens read since then. If none were read, then the next token used.
*/
private _createFailureForTokensSince;
}
//# sourceMappingURL=NodeParser.d.ts.map