mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 12:33:12 +08:00
14 lines
210 B
TypeScript
14 lines
210 B
TypeScript
import { Model } from '.';
|
|
|
|
export interface App extends Model {
|
|
name: string;
|
|
url: string;
|
|
icon: string;
|
|
isPinned: boolean;
|
|
}
|
|
|
|
export interface NewApp {
|
|
name: string;
|
|
url: string;
|
|
icon: string;
|
|
} |