mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
test: add e2e app for nested frame scenarios (#6626)
This commit is contained in:
6
e2e/nested-frame-navigation/app/shared/item.ts
Normal file
6
e2e/nested-frame-navigation/app/shared/item.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface Item {
|
||||
id: number;
|
||||
name: string;
|
||||
description: string;
|
||||
transition: string;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
import { Observable } from "tns-core-modules/data/observable";
|
||||
import { Item } from "./item";
|
||||
|
||||
export class ItemsViewModel extends Observable {
|
||||
constructor(public items: Array<Item>) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user