- ✅ 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
76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import IBrowserSettings from '../types/IBrowserSettings.js';
|
|
import DetachedBrowserContext from './DetachedBrowserContext.js';
|
|
import IOptionalBrowserSettings from '../types/IOptionalBrowserSettings.js';
|
|
import DetachedBrowserPage from './DetachedBrowserPage.js';
|
|
import IBrowser from '../types/IBrowser.js';
|
|
import IBrowserFrame from '../types/IBrowserFrame.js';
|
|
import BrowserWindow from '../../window/BrowserWindow.js';
|
|
import * as PropertySymbol from '../../PropertySymbol.js';
|
|
import BrowserExceptionObserver from '../utilities/BrowserExceptionObserver.js';
|
|
/**
|
|
* Detached browser used when constructing a Window instance without a browser.
|
|
*/
|
|
export default class DetachedBrowser implements IBrowser {
|
|
readonly contexts: DetachedBrowserContext[];
|
|
readonly settings: IBrowserSettings;
|
|
readonly console: Console | null;
|
|
readonly windowClass: new (browserFrame: IBrowserFrame, options?: {
|
|
url?: string;
|
|
width?: number;
|
|
height?: number;
|
|
}) => BrowserWindow;
|
|
[PropertySymbol.exceptionObserver]: BrowserExceptionObserver | null;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param windowClass Window class.
|
|
* @param [options] Options.
|
|
* @param [options.settings] Browser settings.
|
|
* @param [options.console] Console.
|
|
*/
|
|
constructor(windowClass: new (browserFrame: IBrowserFrame, options?: {
|
|
url?: string;
|
|
width?: number;
|
|
height?: number;
|
|
}) => BrowserWindow, options?: {
|
|
settings?: IOptionalBrowserSettings;
|
|
console?: Console;
|
|
});
|
|
/**
|
|
* Returns true if the browser is closed.
|
|
*
|
|
* @returns True if the browser is closed.
|
|
*/
|
|
get closed(): boolean;
|
|
/**
|
|
* Returns the default context.
|
|
*
|
|
* @returns Default context.
|
|
*/
|
|
get defaultContext(): DetachedBrowserContext;
|
|
/**
|
|
* Aborts all ongoing operations and destroys the browser.
|
|
*/
|
|
close(): Promise<void>;
|
|
/**
|
|
* Returns a promise that is resolved when all resources has been loaded, fetch has completed, and all async tasks such as timers are complete.
|
|
*
|
|
* @returns Promise.
|
|
*/
|
|
waitUntilComplete(): Promise<void>;
|
|
/**
|
|
* Aborts all ongoing operations.
|
|
*/
|
|
abort(): Promise<void>;
|
|
/**
|
|
* Creates a new incognito context.
|
|
*/
|
|
newIncognitoContext(): DetachedBrowserContext;
|
|
/**
|
|
* Creates a new page.
|
|
*
|
|
* @returns Page.
|
|
*/
|
|
newPage(): DetachedBrowserPage;
|
|
}
|
|
//# sourceMappingURL=DetachedBrowser.d.ts.map
|