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>;
}
