aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/types/register-client-option.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/types/register-client-option.model.ts')
-rw-r--r--client/src/types/register-client-option.model.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/types/register-client-option.model.ts b/client/src/types/register-client-option.model.ts
index 1c235107a..dff00e9dd 100644
--- a/client/src/types/register-client-option.model.ts
+++ b/client/src/types/register-client-option.model.ts
@@ -27,5 +27,10 @@ export type RegisterClientHelpers = {
27 confirm?: { value: string, action?: () => void } 27 confirm?: { value: string, action?: () => void }
28 }) => void 28 }) => void
29 29
30 markdownRenderer: {
31 textMarkdownToHTML: (textMarkdown: string) => Promise<string>
32 enhancedMarkdownToHTML: (enhancedMarkdown: string) => Promise<string>
33 }
34
30 translate: (toTranslate: string) => Promise<string> 35 translate: (toTranslate: string) => Promise<string>
31} 36}