-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d23a9a9
commit 61d2e1a
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
kandy-echarts/src/main/kotlin/org/jetbrains/kotlinx/kandy/echarts/layers/aes/WithAes.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@file:Suppress("INVISIBLE_REFERENCE", "INVISIBLE_MEMBER") | ||
package org.jetbrains.kotlinx.kandy.echarts.layers.aes | ||
|
||
import org.jetbrains.kotlinx.kandy.dsl.internal.BindingHandler | ||
import org.jetbrains.kotlinx.kandy.dsl.internal.LayerBuilder | ||
import org.jetbrains.kotlinx.kandy.dsl.internal.bindingHandler | ||
|
||
/** | ||
* Interface for managing the aesthetic properties in [LayerBuilder]. | ||
*/ | ||
public interface WithAes | ||
|
||
@PublishedApi | ||
internal val WithAes.bindingHandler: BindingHandler | ||
get() =(this as LayerBuilder).bindingHandler |