[VD] Fix build error of appmanifest_loader.ts 14/261714/2 accepted/tizen/unified/20210728.090629 submit/tizen/20210723.160020
authorDongHyun Song <dh81.song@samsung.com>
Fri, 23 Jul 2021 06:20:22 +0000 (15:20 +0900)
committerDongHyun Song <dh81.song@samsung.com>
Fri, 23 Jul 2021 06:22:16 +0000 (15:22 +0900)
make any type to skip checking declaration.

Change-Id: Ie11b0671a13bc7aff21a22f960aaecc41445ed1d
Signed-off-by: DongHyun Song <dh81.song@samsung.com>
wrt_app/service/builtins/appmanifest_loader.ts

index 69622af..979041a 100644 (file)
@@ -135,7 +135,7 @@ function installWgt(appName: string) {
   let wgtPath = `${baseWorkingDir}/${appName}/${appName}.wgt`;
   let installinfo = "{\"app_id\":\"" + appName + "\",\"pkg_path\":\"" + wgtPath + "\"}";
   console.log(`installWgt info: ${installinfo}`);
-  wrt.tv?.notifyInstall(installinfo);
+  (wrt.tv as any).notifyInstall(installinfo);
   process.exit();
 }