This commit is contained in:
2025-06-16 14:16:24 +07:00
parent e07a30b204
commit 08542471d0
171 changed files with 5042 additions and 19 deletions
+38
View File
@@ -0,0 +1,38 @@
type notificationType = {
avatar: string;
title: string;
subtitle: string;
color:string;
time:string;
};
type profileType = {
title: string;
href: string;
badge:boolean;
};
type languageType = {
avatar: string;
title: string;
subtext: string;
value: string;
};
type appsLinkType = {
avatar: string;
title: string;
subtext: string;
color:string;
href: string;
};
type searchType = {
title: string;
href: string;
};
export type { notificationType, profileType, languageType, appsLinkType, searchType }