mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-07 04:53:12 +08:00
15 lines
235 B
TypeScript
15 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;
|
|
}
|