test: add e2e app for nested frame scenarios (#6626)

This commit is contained in:
Manol Donev
2018-11-28 16:59:17 +02:00
committed by GitHub
parent c8341819a3
commit f87ec4bc08
113 changed files with 3068 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export interface Item {
id: number;
name: string;
description: string;
transition: string;
}

View File

@@ -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();
}
}