merged any | null to any

This commit is contained in:
Stephan
2017-07-13 01:29:07 +02:00
committed by GitHub
parent 5bb489074d
commit 7a119a9bef
+1 -1
View File
@@ -662,7 +662,7 @@ declare namespace KnockoutComponentTypes {
getConfig? (componentName: string, callback: (result: ComponentConfig | null) => void): void;
loadComponent? (componentName: string, config: ComponentConfig, callback: (result: Definition | null) => void): void;
loadTemplate? (componentName: string, templateConfig: any, callback: (result: Node[] | null) => void): void;
loadViewModel? (componentName: string, viewModelConfig: any, callback: (result: any | null) => void): void;
loadViewModel? (componentName: string, viewModelConfig: any, callback: (result: any) => void): void;
suppressLoaderExceptions?: boolean;
}