Files
pse.dev/types/common.ts
Kalidou Diagne f3fe727e5e General issues fix (#197)
* general issues fixes
2024-10-18 02:09:32 +01:00

27 lines
373 B
TypeScript

import { ProjectStatus } from "@/lib/types"
import { LocaleTypes } from "@/app/i18n/settings"
export interface LangProps {
params: {
lang: LocaleTypes
}
}
export type IThemeStatus = Partial<
Record<
ProjectStatus,
{
label: string
icon: any
}
>
>
export type IThemesButton = Record<
string,
{
label: string
icon: any
}
>