turkmen-expo/lib/types.ts

28 lines
454 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
import { StaticImageData } from 'next/image';
export type EventCardProps = {
dark?: boolean;
img: StaticImageData;
title: string;
text: string;
suptitle: string;
footerText: string;
organizer: string;
date: string;
calendar: string;
id: number;
};
export type NewsCardProps = {
img: StaticImageData;
date: string;
text: string;
id: number;
};
export type RoadCardProps = {
icon: any;
text: string;
enText: string;
};