mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
export interface Item {
|
|
id: number;
|
|
name: string;
|
|
description: string;
|
|
transition: string;
|
|
}
|