mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
15 lines
274 B
Kotlin
15 lines
274 B
Kotlin
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.script
|
|
|
|
import java.io.Reader
|
|
|
|
interface Compilable {
|
|
|
|
@Throws(ScriptException::class)
|
|
fun compile(script: Reader): CompiledScript
|
|
|
|
@Throws(ScriptException::class)
|
|
fun compile(script: String): CompiledScript
|
|
} |