one
Version:
One is a new React Framework that makes Vite serve both native and web.
13 lines (11 loc) • 484 B
JavaScript
"use client";
const STACK_TOOLBAR_CHILD = /* @__PURE__ */Symbol.for("one.stack-toolbar.child");
let stackToolbarImplementation = null;
function registerStackToolbarImplementation(implementation) {
stackToolbarImplementation = implementation;
}
function getStackToolbarImplementation() {
return stackToolbarImplementation;
}
export { STACK_TOOLBAR_CHILD, getStackToolbarImplementation, registerStackToolbarImplementation };
//# sourceMappingURL=StackToolbarImplementation.mjs.map