willcore.ui
Version:
Simple, Fast And Powerful Client-Side HTML UI Framework.
19 lines (14 loc) • 344 B
JavaScript
import { serviceProxy } from "./serviceProxy.js";
const proxyHandler = {
get(target, property) {
return serviceProxy.new(property);
}
};
class baseRequestProxy {
constructor() {
}
static new() {
return new Proxy(new baseRequestProxy(), proxyHandler);
}
}
export {baseRequestProxy};