Files
Fluxup_PAP/node_modules/@expo/cli/static/template/+native-intent.ts
2026-03-10 16:18:05 +00:00

10 lines
266 B
TypeScript

// Learn more https://docs.expo.dev/router/advanced/native-intent/
export async function redirectSystemPath(intent: {
path: string;
initial: boolean;
}): Promise<string> {
// Manipulate the path before returning to redirect on native.
return intent.path;
}