mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-28 07:09:36 +02:00
18 lines
296 B
TypeScript
18 lines
296 B
TypeScript
|
import { App, NewApp } from '../../interfaces';
|
||
|
|
||
|
export const newAppTemplate: NewApp = {
|
||
|
name: '',
|
||
|
url: '',
|
||
|
icon: '',
|
||
|
isPublic: true,
|
||
|
};
|
||
|
|
||
|
export const appTemplate: App = {
|
||
|
...newAppTemplate,
|
||
|
isPinned: false,
|
||
|
orderId: 0,
|
||
|
id: 0,
|
||
|
createdAt: new Date(),
|
||
|
updatedAt: new Date(),
|
||
|
};
|