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.

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