This commit is contained in:
2022-06-14 23:18:00 +02:00
parent ce00e33338
commit 01b8c4eaf6
4 changed files with 33 additions and 10 deletions

View File

@ -6,6 +6,7 @@ interface ModalFunctions {
setVisible?: CallableFunction;
setContent?: (content: Project| Diary) => void;
setHtml?: (html: string) => void;
onContentReady?: () => void;
}
const modalFunctions: ModalFunctions = {};