UNPKG

@rws-framework/client

Version:

This package provides the core client-side framework for Realtime Web Suit (RWS), enabling modular, asynchronous web components, state management, and integration with backend services. It is located in `.dev/client`.

12 lines (9 loc) 290 B
import RWSViewComponent from '../_component'; interface RWSServiceDecoratorOptions { _vars?: any } function RWSService<T extends RWSViewComponent>(options?: RWSServiceDecoratorOptions): (type: any) => void { return (constructor: T) => { }; } export { RWSService };