1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-02 17:35:17 +02:00

Set app visibility

This commit is contained in:
Paweł Malak 2021-11-08 23:40:30 +01:00
parent ee9aefa4fa
commit d1738a0a3e
7 changed files with 127 additions and 105 deletions

View file

@ -1,15 +1,13 @@
import { Model } from '.';
export interface App extends Model {
name: string;
url: string;
icon: string;
isPinned: boolean;
orderId: number;
}
export interface NewApp {
name: string;
url: string;
icon: string;
}
isPublic: boolean;
}
export interface App extends Model, NewApp {
orderId: number;
isPinned: boolean;
}