mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-24 13:39:35 +02:00
18 lines
316 B
TypeScript
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(),
|
|
};
|