@focuson/form_components
Version:
Components that can be used by @focuson/forms
9 lines (8 loc) • 368 B
TypeScript
import { HasDependencies } from "@focuson/focuson";
import { LensProps } from "@focuson/state";
interface ExternalComponentProps<S, C> extends LensProps<S, any, C> {
id: string;
nameOfComponentFn: string;
}
export declare function ExternalComponent<S, C extends HasDependencies>({ id, state, nameOfComponentFn }: ExternalComponentProps<S, C>): any;
export {};