mirror of
https://github.com/privacy-scaling-explorations/pse.dev.git
synced 2026-01-10 06:38:03 -05:00
27 lines
381 B
TypeScript
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
|
|
}
|
|
>
|