mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
|
|
import { Observable } from "tns-core-modules/data/observable";
|
|
import { Item } from "./item";
|
|
|
|
export class ItemsViewModel extends Observable {
|
|
constructor(public items: Array<Item>) {
|
|
super();
|
|
}
|
|
}
|