Convert MarkdownPreviewView to Kotlin

This commit is contained in:
Billy Brawner 2019-08-17 12:40:38 -05:00 committed by William Brawner
parent 2f60ed38aa
commit 0b9eb26b4a
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)
}