UNPKG

@indicafix/types

Version:

useful package for type sharing in different services.

15 lines (14 loc) 303 B
import { Language } from "./types"; export interface Theme { id: string; title: string; language: Language; description: string; image: string; indicators: string[]; templates: string[]; available: boolean; status: string; createdAt: Date; updatedAt: Date; }