Files
sanasto-app/src/lib/types.ts

17 lines
321 B
TypeScript

export type Entry = {
id: number
category: string | null
fi: string | null
en: string | null
sv: string | null
no: string | null
ru: string | null
de: string | null
updated_at: string | null
}
export type Language = {
code: keyof Pick<Entry, 'fi' | 'en' | 'sv' | 'no' | 'ru' | 'de'>
name: string
}