9 lines
197 B
Java
9 lines
197 B
Java
|
package com.airbnb.deeplinkdispatch.handler;
|
||
|
|
||
|
import android.content.Context;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface DeepLinkHandler<T> {
|
||
|
void handleDeepLink(Context context, T t);
|
||
|
}
|