UNPKG

271 BTypeScriptView Raw
1export interface IDialogButton {
2 name: string;
3 clickHandler: Function;
4 isPrimary: boolean;
5}
6export interface IDynamicResource {
7 resources: Array<string>;
8 componentPath: string;
9 ngfactoryModulePath: string;
10 ngModulePath?: string;
11}