UNPKG

@rws-framework/client

Version:

Realtime Web Suit is a web-component powered, MS FAST powered fullstack-oriented framework that you can use to create domain-agnostic modular asynchoronous components with intershared authorized states.

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 };