Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/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>
27 lines
978 B
JavaScript
27 lines
978 B
JavaScript
"use strict";
|
|
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
// See LICENSE in the project root for license information.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.DocParagraph = void 0;
|
|
const DocNode_1 = require("./DocNode");
|
|
const DocNodeContainer_1 = require("./DocNodeContainer");
|
|
/**
|
|
* Represents a paragraph of text, similar to a `<p>` element in HTML.
|
|
* Like CommonMark, the TSDoc syntax uses blank lines to delineate paragraphs
|
|
* instead of explicitly notating them.
|
|
*/
|
|
class DocParagraph extends DocNodeContainer_1.DocNodeContainer {
|
|
/**
|
|
* Don't call this directly. Instead use {@link TSDocParser}
|
|
* @internal
|
|
*/
|
|
constructor(parameters, childNodes) {
|
|
super(parameters, childNodes);
|
|
}
|
|
/** @override */
|
|
get kind() {
|
|
return DocNode_1.DocNodeKind.Paragraph;
|
|
}
|
|
}
|
|
exports.DocParagraph = DocParagraph;
|
|
//# sourceMappingURL=DocParagraph.js.map
|