mirror of
https://github.com/meowarex/rl-mobile.git
synced 2026-08-26 14:07:45 +10:00
7 lines
171 B
Java
7 lines
171 B
Java
package androidx.compose.runtime;
|
|
public interface Composer {
|
|
void startReplaceGroup(int key);
|
|
void endReplaceGroup();
|
|
Object consume(CompositionLocal key);
|
|
}
|