UNPKG

expo-linking

Version:

Create and open deep links universally

10 lines 369 B
import { NativeModule } from 'expo-modules-core'; type ExpoLinkingModuleEvents = { onURLReceived(url: string): void; }; declare class ExpoLinkingNativeModule extends NativeModule<ExpoLinkingModuleEvents> { getLinkingURL(): string | null; } declare const ExpoLinking: ExpoLinkingNativeModule; export default ExpoLinking; //# sourceMappingURL=ExpoLinking.d.ts.map