UNPKG

twm-weapp

Version:
10 lines (9 loc) 290 B
import Twm from '../TwmWatcher'; import { ContextResource } from '../resource'; export interface TwmMiddleware { apply: (twm: Twm, context: ContextResource) => void; } export declare type TwmPlugin = { new (...args: any[]): any; }; export declare const DefaultPlugins: TwmPlugin[];