Added the text function to the MarkedRenderer interface

This commit is contained in:
Georgios Valotasios
2015-12-28 20:16:38 +01:00
parent 870cb9e2bb
commit 7f6e0444b1

1
marked/marked.d.ts vendored
View File

@@ -87,6 +87,7 @@ interface MarkedRenderer {
del(text: string): any;
link(href: string, title: string, text: string): any;
image(href: string, title: string, text: string): any;
text(text: string): any;
}
interface MarkedOptions {