UNPKG

piral-ng

Version:

Plugin for integrating Angular components in Piral.

11 lines (10 loc) 409 B
import type { ForeignComponent, BaseComponentProps } from 'piral-core'; import type { NgModuleDefiner } from './types'; export interface NgConverterOptions { } export interface NgConverter { <TProps extends BaseComponentProps>(component: any): ForeignComponent<TProps>; defineModule: NgModuleDefiner; Extension: any; } export declare function createConverter(_?: NgConverterOptions): NgConverter;