]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/types/register-client-option.model.ts
Fix dropdown-user placement and menu-left scroll on touchscreens (#2706)
[github/Chocobozzz/PeerTube.git] / client / src / types / register-client-option.model.ts
index 1c235107a37cc622b9fe35a375c51f0b5086ae84..dff00e9dd93d924c4e6d98f32667dbc4bca5be79 100644 (file)
@@ -27,5 +27,10 @@ export type RegisterClientHelpers = {
     confirm?: { value: string, action?: () => void }
   }) => void
 
+  markdownRenderer: {
+    textMarkdownToHTML: (textMarkdown: string) => Promise<string>
+    enhancedMarkdownToHTML: (enhancedMarkdown: string) => Promise<string>
+  }
+
   translate: (toTranslate: string) => Promise<string>
 }