- ✅ 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
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import type {Root} from 'mdast'
|
|
import type {Options as ToMarkdownExtension} from 'mdast-util-to-markdown'
|
|
import type {Plugin} from 'unified'
|
|
import type {Options} from './lib/index.js'
|
|
|
|
export type {Options} from './lib/index.js'
|
|
|
|
/**
|
|
* Add support for serializing to markdown.
|
|
*
|
|
* @this
|
|
* Unified processor.
|
|
* @param
|
|
* Configuration (optional).
|
|
* @returns
|
|
* Nothing.
|
|
*/
|
|
declare const remarkStringify: Plugin<
|
|
[(Readonly<Options> | null | undefined)?],
|
|
Root,
|
|
string
|
|
>
|
|
export default remarkStringify
|
|
|
|
// Add custom settings supported when `remark-stringify` is added.
|
|
declare module 'unified' {
|
|
interface Settings extends Options {}
|
|
|
|
interface Data {
|
|
/**
|
|
* List of `mdast-util-to-markdown` extensions to use.
|
|
*
|
|
* This type is registered by `remark-stringify`.
|
|
* Values can be registered by remark plugins that extend
|
|
* `mdast-util-to-markdown`.
|
|
* See {@link ToMarkdownExtension | `Options`} from
|
|
* {@link https://github.com/syntax-tree/mdast-util-to-markdown#options | `mdast-util-to-markdown`}.
|
|
*/
|
|
toMarkdownExtensions?: ToMarkdownExtension[]
|
|
}
|
|
}
|