UNPKG

react18-to-angularjs

Version:

The easiest way to embed React 18 components in AngularJS apps!

10 lines (7 loc) 254 B
/// <reference types="jest-extended" /> import { IComponentOptions } from 'angular'; export type react2angular<T> = (props: { Class: React.ComponentType<T>; bindingNames: (keyof T)[] | null; injectNames?: string[]; }) => IComponentOptions;