1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed typings and props for node tags

This commit is contained in:
Fedor Katurov 2019-10-09 12:58:47 +07:00
parent df1c11a308
commit f9330000c2
5 changed files with 22 additions and 19 deletions

View file

@ -37,6 +37,7 @@ export const EMPTY_NODE: INode = {
type: null,
blocks: [],
tags: [],
options: {
flow: {

View file

@ -110,6 +110,8 @@ export interface INode {
};
};
tags: ITag[];
createdAt?: string;
updatedAt?: string;
}