1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-28 07:09:36 +02:00
flame/client/src/utility/templateObjects/appTemplate.ts

18 lines
297 B
TypeScript
Raw Normal View History

2021-11-08 23:40:30 +01:00
import { App, NewApp } from '../../interfaces';
export const newAppTemplate: NewApp = {
name: '',
url: '',
icon: '',
isPublic: true,
};
export const appTemplate: App = {
...newAppTemplate,
isPinned: false,
orderId: 0,
id: -1,
2021-11-08 23:40:30 +01:00
createdAt: new Date(),
updatedAt: new Date(),
};