UNPKG

reactant-module

Version:

A module model for Reactant

13 lines 473 B
import { identifierKey, storeKey } from '../constants'; import { Service } from '../interfaces'; declare abstract class ViewModule implements Service { readonly [identifierKey]?: string | undefined; readonly [storeKey]?: any; constructor(); /** * React function component defined by the current ViewModule */ abstract component(props: Record<string, any>): React.ReactElement | null; } export { ViewModule }; //# sourceMappingURL=view.d.ts.map