UNPKG

@formily/reactive

Version:

> Web Reactive Library Like Mobx

8 lines (7 loc) 134 B
export interface IBox { <T>(target: T): { get(): T; set(value: T): void; }; } export declare const box: IBox;