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