UNPKG

impair

Version:

A framework for building React applications with OOP principles and a layered architecture.

7 lines (6 loc) 284 B
import { FC } from 'react'; import { Constructor, RendererViewModel } from '../types'; export declare function component<P>(component: FC<P>): FC<P>; export declare namespace component { var fromViewModel: <P extends object>(viewModel: Constructor<RendererViewModel>) => FC<P>; }