1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/redux/node/constants.ts
2019-08-06 18:32:51 +07:00

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,
}
},
}