- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
/**
|
|
* Turn markdown into a syntax tree.
|
|
*
|
|
* @overload
|
|
* @param {Value} value
|
|
* @param {Encoding | null | undefined} [encoding]
|
|
* @param {Options | null | undefined} [options]
|
|
* @returns {Root}
|
|
*
|
|
* @overload
|
|
* @param {Value} value
|
|
* @param {Options | null | undefined} [options]
|
|
* @returns {Root}
|
|
*
|
|
* @param {Value} value
|
|
* Markdown to parse.
|
|
* @param {Encoding | Options | null | undefined} [encoding]
|
|
* Character encoding for when `value` is `Buffer`.
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration.
|
|
* @returns {Root}
|
|
* mdast tree.
|
|
*/
|
|
export function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;
|
|
/**
|
|
* Turn markdown into a syntax tree.
|
|
*
|
|
* @overload
|
|
* @param {Value} value
|
|
* @param {Encoding | null | undefined} [encoding]
|
|
* @param {Options | null | undefined} [options]
|
|
* @returns {Root}
|
|
*
|
|
* @overload
|
|
* @param {Value} value
|
|
* @param {Options | null | undefined} [options]
|
|
* @returns {Root}
|
|
*
|
|
* @param {Value} value
|
|
* Markdown to parse.
|
|
* @param {Encoding | Options | null | undefined} [encoding]
|
|
* Character encoding for when `value` is `Buffer`.
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration.
|
|
* @returns {Root}
|
|
* mdast tree.
|
|
*/
|
|
export function fromMarkdown(value: Value, options?: Options | null | undefined): Root;
|
|
import type { Value } from 'micromark-util-types';
|
|
import type { Encoding } from 'micromark-util-types';
|
|
import type { Options } from './types.js';
|
|
import type { Root } from 'mdast';
|
|
//# sourceMappingURL=index.d.ts.map
|