We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b964230 commit 2cc7e00Copy full SHA for 2cc7e00
1 file changed
stub/src/main/java/com/omega_r/libs/omegatypes/Text.kt
@@ -1,6 +1,7 @@
1
package com.omega_r.libs.omegatypes
2
3
import java.io.Serializable
4
+import java.lang.RuntimeException
5
6
interface Text : Serializable, Textable {
7
@@ -10,4 +11,8 @@ interface Text : Serializable, Textable {
10
11
12
}
13
-}
14
+}
15
+
16
+abstract class TextStyle : Serializable
17
18
+fun String.toText(textStyle: TextStyle? = null): Text = throw RuntimeException()
0 commit comments