From 7a119a9bef15ec7e384b60bb515a97386c1e505c Mon Sep 17 00:00:00 2001 From: Stephan Date: Thu, 13 Jul 2017 01:29:07 +0200 Subject: [PATCH] merged any | null to any --- types/knockout/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/knockout/index.d.ts b/types/knockout/index.d.ts index 5dc420ff5b..18918b3012 100644 --- a/types/knockout/index.d.ts +++ b/types/knockout/index.d.ts @@ -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; }