export interface IDialogButton {
    name: string;
    clickHandler: Function;
    isPrimary: boolean;
}
export interface IDynamicResource {
    resources: Array<string>;
    componentPath: string;
    ngfactoryModulePath: string;
    ngModulePath?: string;
}
