11 lines
218 B
Java
11 lines
218 B
Java
package com.google.android.material.internal;
|
|
|
|
import android.view.View;
|
|
|
|
/* loaded from: classes.dex */
|
|
interface ViewGroupOverlayImpl extends ViewOverlayImpl {
|
|
void add(View view);
|
|
|
|
void remove(View view);
|
|
}
|