mirror of
https://github.com/pawelmalak/flame.git
synced 2025-08-03 18:05:18 +02:00
Pinned Apps
This commit is contained in:
parent
d3c5e2a5ec
commit
fa5c35b619
6 changed files with 90 additions and 12 deletions
|
@ -3,11 +3,18 @@ export interface App {
|
|||
name: string;
|
||||
url: string;
|
||||
icon: string;
|
||||
isPinned: boolean;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
}
|
||||
|
||||
export interface AppResponse {
|
||||
export interface AppResponse<T> {
|
||||
success: boolean;
|
||||
data: App[]
|
||||
data: T;
|
||||
}
|
||||
|
||||
export interface NewApp {
|
||||
name: string;
|
||||
url: string;
|
||||
icon: string;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue