mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-08 05:23:11 +08:00
19 lines
316 B
TypeScript
19 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(),
|
|
};
|