- ✅ 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
93 lines
1.6 KiB
TypeScript
93 lines
1.6 KiB
TypeScript
import HTMLElement from '../html-element/HTMLElement.js';
|
|
/**
|
|
* HTMLSourceElement
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
|
|
*/
|
|
export default class HTMLSourceElement extends HTMLElement {
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height(): number;
|
|
/**
|
|
* Sets height.
|
|
*
|
|
* @param value Height.
|
|
*/
|
|
set height(value: number);
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width(): number;
|
|
/**
|
|
* Sets width.
|
|
*
|
|
* @param value Width.
|
|
*/
|
|
set width(value: number);
|
|
/**
|
|
* Returns media.
|
|
*
|
|
* @returns Media.
|
|
*/
|
|
get media(): string;
|
|
/**
|
|
* Sets media.
|
|
*
|
|
* @param value Media.
|
|
*/
|
|
set media(value: string);
|
|
/**
|
|
* Returns sizes.
|
|
*
|
|
* @returns Sizes.
|
|
*/
|
|
get sizes(): string;
|
|
/**
|
|
* Sets sizes.
|
|
*
|
|
* @param value Sizes.
|
|
*/
|
|
set sizes(value: string);
|
|
/**
|
|
* Returns source.
|
|
*
|
|
* @returns Source.
|
|
*/
|
|
get src(): string;
|
|
/**
|
|
* Sets source.
|
|
*
|
|
* @param src Source.
|
|
*/
|
|
set src(src: string);
|
|
/**
|
|
* Returns source set.
|
|
*
|
|
* @returns Source set.
|
|
*/
|
|
get srcset(): string;
|
|
/**
|
|
* Sets source set.
|
|
*
|
|
* @param value Source set.
|
|
*/
|
|
set srcset(value: string);
|
|
/**
|
|
* Returns type.
|
|
*
|
|
* @returns Type.
|
|
*/
|
|
get type(): string;
|
|
/**
|
|
* Sets type.
|
|
*
|
|
* @param type Type.
|
|
*/
|
|
set type(type: string);
|
|
}
|
|
//# sourceMappingURL=HTMLSourceElement.d.ts.map
|