mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-29 15:49:37 +02:00
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
import { Model } from '.';
|
|
|
|
export interface NewApp {
|
|
name: string;
|
|
url: string;
|
|
icon: string;
|
|
isPublic: boolean;
|
|
description: string;
|
|
}
|
|
|
|
export interface App extends Model, NewApp {
|
|
orderId: number;
|
|
isPinned: boolean;
|
|
}
|