Files
mission-control-ui/node_modules/motion-dom/dist/es/render/Feature.mjs
2026-03-27 18:36:05 +00:00

16 lines
374 B
JavaScript

/**
* Feature base class for extending VisualElement functionality.
* Features are plugins that can be mounted/unmounted to add behavior
* like gestures, animations, or layout tracking.
*/
class Feature {
constructor(node) {
this.isMounted = false;
this.node = node;
}
update() { }
}
export { Feature };
//# sourceMappingURL=Feature.mjs.map