Convert MarkdownPreviewView to Kotlin

This commit is contained in:
Billy Brawner 2019-08-17 12:40:38 -05:00
parent 7a08426334
commit 6e0c3b9809
2 changed files with 5 additions and 9 deletions

View file

@ -1,9 +0,0 @@
package com.wbrawner.simplemarkdown.view;
/**
* Created by billy on 8/22/17.
*/
public interface MarkdownPreviewView {
void updatePreview(String html);
}

View file

@ -0,0 +1,5 @@
package com.wbrawner.simplemarkdown.view
interface MarkdownPreviewView {
fun updatePreview(html: String)
}