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`.

16 lines (13 loc) 348 B
// custom-typings.d.ts declare module 'glob' { import { Minimatch } from 'minimatch'; namespace glob { interface IOptions { // Add only the options you need or leave it empty to bypass the error } interface IGlobBase { minimatch: Minimatch; options: IOptions; } } }