Files
featheroom/lib/types/Setting.ts

9 lines
130 B
TypeScript

import { Color } from '@/lib/types'
type Setting = {
color: Color
theme: 'light' | 'dark' | 'auto'
}
export default Setting