ff-webpage/types/collection/lookup.ts

16 lines
401 B
TypeScript
Raw Normal View History

export default interface Lookup {
id: number;
documentId: string;
createdAt: string;
updatedAt: string;
publishedAt: string;
2025-02-14 13:57:55 +01:00
reference: string;
collection: "events" | "vehicles" | "articles" | "operations";
show_image: boolean;
show_date: boolean;
list_with_date: "none" | "by-year" | "by-month";
items_with_number: "none" | "numbered" | "inverted";
enable_detail: boolean;
}