Files
pse.dev/types/common.ts
2024-01-16 15:05:00 +00:00

27 lines
381 B
TypeScript

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