UNPKG

jorum

Version:

Model layer with rx.js for React applications.

11 lines (10 loc) 279 B
export declare type ConstructorType<T> = { new (...args: any[]): T; }; export interface Bloc { blocWillDestroy?(): void; } export declare const contextSymbol: unique symbol; export declare function bloc<T extends { new (...args: any[]): {}; }>(constructor: T): void;