1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-01 17:05:18 +02:00
flame/client/src/interfaces/App.ts

14 lines
214 B
TypeScript
Raw Normal View History

2021-05-19 18:26:57 +02:00
import { Model } from './Api';
export interface App extends Model {
2021-05-10 19:02:16 +02:00
name: string;
url: string;
icon: string;
2021-05-12 17:31:25 +02:00
isPinned: boolean;
}
export interface NewApp {
name: string;
url: string;
icon: string;
2021-05-10 19:02:16 +02:00
}