codigo0/node_modules/happy-dom/lib/nodes/html-media-element/RemotePlayback.js
planetazuzu 5d7a6500fe refactor: Fase 1 - Clean Architecture, refactorización modular y eliminación de duplicidades
-  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
2026-01-25 21:09:47 +01:00

42 lines
1.2 KiB
JavaScript

import EventTarget from '../../event/EventTarget.js';
import * as PropertySymbol from '../../PropertySymbol.js';
/**
* RemotePlayback.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/RemotePlayback
*/
export default class RemotePlayback extends EventTarget {
// Internal properties
[PropertySymbol.state] = 'disconnected';
// Events
onconnecting = null;
onconnect = null;
ondisconnect = null;
/**
* Returns the state of the remote playback.
*/
get state() {
return this[PropertySymbol.state];
}
/**
* Watches the list of available remote playback devices and returns a Promise that resolves with a callbackId of an available remote playback device.
*
* @returns Promise.
*/
async watchAvailability() {
// TODO: Implement
}
/**
* Cancels the request to monitor the availability of remote playback devices.
*/
cancelWatchAvailability() {
// TODO: Implement
}
/**
* Prompts the user to select and give permission to connect to a remote playback device.
*/
prompt() {
// TODO: Implement
}
}
//# sourceMappingURL=RemotePlayback.js.map