Convert MarkdownPreviewView to Kotlin
This commit is contained in:
parent
2f60ed38aa
commit
0b9eb26b4a
2 changed files with 5 additions and 9 deletions
|
@ -1,9 +0,0 @@
|
||||||
package com.wbrawner.simplemarkdown.view;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Created by billy on 8/22/17.
|
|
||||||
*/
|
|
||||||
|
|
||||||
public interface MarkdownPreviewView {
|
|
||||||
void updatePreview(String html);
|
|
||||||
}
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
package com.wbrawner.simplemarkdown.view
|
||||||
|
|
||||||
|
interface MarkdownPreviewView {
|
||||||
|
fun updatePreview(html: String)
|
||||||
|
}
|
Loading…
Reference in a new issue