UNPKG

desmy-react

Version:

Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.

15 lines (13 loc) 360 B
import { Observable } from 'rxjs'; interface Message { data?: any; type?: string; } export declare const DesmyRxServices: { fileViewer: (data: any, type: string) => void; sendData: (data: any, type: string) => void; send: (type: string) => void; clearMessages: () => void; getSubscription: () => Observable<Message>; }; export {};