feature/tauri-js-rs
ts 20 lines 284 Bytes
Raw
1 export type Item = {
2 name: string;
3 slug: string;
4 description?: string;
5 };
6
7 export const menus: { items: Item[] }[] = [
8 {
9 items: [
10 {
11 name: 'Play',
12 slug: 'play',
13 },
14 {
15 name: 'Chat 🤖',
16 slug: 'chat',
17 },
18 ],
19 },
20 ];