first-npm-package-nicule
Version:
This isi first npm package
15 lines (11 loc) • 382 B
text/typescript
import { BaseInputComponent } from '../classes';
import { Type } from '@angular/core';
export type InputConfiguration = NamedInputConfiguration | TypedInputConfiguration;
interface NamedInputConfiguration {
name: string;
component: Type<BaseInputComponent>;
}
interface TypedInputConfiguration {
type: string;
component: Type<BaseInputComponent>;
}