willcore.uicore
Version:
Base extendable UI html framework.
16 lines (15 loc) • 488 B
JavaScript
import { intermediateProxyHandler } from"./intermediateProxyHandler.js";
/**
* Proxy class for the main intermediate assignable instanciation.
*/
class intermediateProxy{
/**
* Factory method.
* @param {Proxy} parentProxy
* @param {String} parentProperty
*/
static new(parentProxy, parentProperty){
return new Proxy(new intermediateProxy(), new intermediateProxyHandler(parentProxy,parentProperty));
}
}
export { intermediateProxy };