From 45cd043ad36f441d03df6ee7e3bed4ce612c56db Mon Sep 17 00:00:00 2001 From: Takuya Yamamoto Date: Fri, 10 Jan 2020 10:56:42 +0900 Subject: [PATCH 1/2] fix: add optional frame property --- index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 7a31dbeb..36035bda 100644 --- a/index.d.ts +++ b/index.d.ts @@ -5,7 +5,8 @@ import { Page, NavigationEntry } from 'tns-core-modules/ui/frame/frame' import { View } from 'tns-core-modules/ui/core/view' export interface NavigationEntryVue extends NavigationEntry { - props?: Record + props?: Record, + frame?: string } export type navigateTo = ( From 3a892934007b34ee8bbe945644b709aacfc6498c Mon Sep 17 00:00:00 2001 From: Takuya Yamamoto Date: Sat, 11 Jan 2020 23:19:45 +0900 Subject: [PATCH 2/2] fix: accept all type values --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 36035bda..62971a46 100644 --- a/index.d.ts +++ b/index.d.ts @@ -6,7 +6,7 @@ import { View } from 'tns-core-modules/ui/core/view' export interface NavigationEntryVue extends NavigationEntry { props?: Record, - frame?: string + frame?: any } export type navigateTo = (