1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 13:39:35 +02:00
flame/client/src/utility/templateObjects/appTemplate.ts
2021-12-07 16:48:24 +01:00

18 lines
316 B
TypeScript

import { App, NewApp } from '../../interfaces';
export const newAppTemplate: NewApp = {
name: '',
url: '',
icon: '',
isPublic: true,
description: '',
};
export const appTemplate: App = {
...newAppTemplate,
isPinned: false,
orderId: 0,
id: -1,
createdAt: new Date(),
updatedAt: new Date(),
};