8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfbf83d commit 589c4e9Copy full SHA for 589c4e9
index.d.ts
@@ -1,12 +1,16 @@
1
// import vue.js typings
2
// import Vue from 'vue';
3
import { Vue, VueConstructor } from 'vue/types/vue'
4
-import { Page, NavigationEntry, Size } from 'tns-core-modules/ui/frame/frame'
+import { Page, NavigationEntry } from 'tns-core-m 7F95 odules/ui/frame/frame'
5
import { View } from 'tns-core-modules/ui/core/view'
6
7
+export interface NavigationEntryVue extends NavigationEntry {
8
+ props?: Record<string, any>
9
+}
10
+
11
export type navigateTo = (
12
component: VueConstructor,
- options?: NavigationEntry,
13
+ options?: NavigationEntryVue,
14
cb?: () => Page,
15
) => Promise<Page>;
16
0 commit comments