Files
flame/client/src/interfaces/App.ts
2021-05-23 18:38:39 +02:00

14 lines
210 B
TypeScript

import { Model } from '.';
export interface App extends Model {
name: string;
url: string;
icon: string;
isPinned: boolean;
}
export interface NewApp {
name: string;
url: string;
icon: string;
}