mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-08 05:23:11 +08:00
Pinned Apps
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user