@oxyhq/services
Version:
Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀
15 lines • 457 B
TypeScript
import type React from 'react';
import type { BaseScreenProps } from '../navigation/types';
interface UserLinksScreenProps extends BaseScreenProps {
userId: string;
links: Array<{
url: string;
title?: string;
description?: string;
image?: string;
id: string;
}>;
}
declare const UserLinksScreen: React.FC<UserLinksScreenProps>;
export default UserLinksScreen;
//# sourceMappingURL=UserLinksScreen.d.ts.map