UNPKG

alinea

Version:
4 lines (3 loc) 263 B
import type { ComponentType, ReactNode } from 'react'; export type View<Props> = string | ((props: Props) => ReactNode); export declare function resolveView<Props>(viewMap: Record<string, ComponentType<any>>, view: View<Props>): ComponentType<Props> | undefined;