Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - database/ (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { DocNodeKind, DocNode, type IDocNodeParameters, type IDocNodeParsedParameters } from './DocNode';
|
|
import { DocSection } from './DocSection';
|
|
import type { DocBlockTag } from './DocBlockTag';
|
|
/**
|
|
* Constructor parameters for {@link DocBlock}.
|
|
*/
|
|
export interface IDocBlockParameters extends IDocNodeParameters {
|
|
blockTag: DocBlockTag;
|
|
}
|
|
/**
|
|
* Constructor parameters for {@link DocBlock}.
|
|
*/
|
|
export interface IDocBlockParsedParameters extends IDocNodeParsedParameters {
|
|
blockTag: DocBlockTag;
|
|
}
|
|
/**
|
|
* Represents a section that is introduced by a TSDoc block tag.
|
|
* For example, an `@example` block.
|
|
*/
|
|
export declare class DocBlock extends DocNode {
|
|
private readonly _blockTag;
|
|
private readonly _content;
|
|
/**
|
|
* Don't call this directly. Instead use {@link TSDocParser}
|
|
* @internal
|
|
*/
|
|
constructor(parameters: IDocBlockParameters | IDocBlockParsedParameters);
|
|
/** @override */
|
|
get kind(): DocNodeKind | string;
|
|
/**
|
|
* The TSDoc tag that introduces this section.
|
|
*/
|
|
get blockTag(): DocBlockTag;
|
|
/**
|
|
* The TSDoc tag that introduces this section.
|
|
*/
|
|
get content(): DocSection;
|
|
/** @override */
|
|
protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
|
|
}
|
|
//# sourceMappingURL=DocBlock.d.ts.map
|