Files
pse.dev/types/common.ts
Kalidou Diagne fd0d52b6ec fix #435 remove i18n (#451)
* fix #435 remove i18n
2025-06-12 23:30:32 +08:00

20 lines
253 B
TypeScript

import { ProjectStatus } from "@/lib/types"
export type IThemeStatus = Partial<
Record<
ProjectStatus,
{
label: string
icon: any
}
>
>
export type IThemesButton = Record<
string,
{
label: string
icon: any
}
>