mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
20 lines
No EOL
251 B
TypeScript
20 lines
No EOL
251 B
TypeScript
import { INode } from "../types";
|
|
|
|
export const EMPTY_NODE: INode = {
|
|
id: null,
|
|
|
|
user_id: null,
|
|
|
|
title: '',
|
|
files: [],
|
|
|
|
cover: null,
|
|
type: null,
|
|
|
|
options: {
|
|
flow: {
|
|
display: 'single',
|
|
show_description: false,
|
|
}
|
|
},
|
|
} |