1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-29 15:49:37 +02:00
flame/client/src/interfaces/App.ts
2021-12-07 16:48:24 +01:00

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;
}