Files
Fluxup_PAP/node_modules/expo-linking/build/ExpoLinking.d.ts
2026-03-10 16:18:05 +00:00

10 lines
369 B
TypeScript

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