mirror of
https://github.com/thiloho/archtika.git
synced 2025-11-22 02:41:35 +01:00
9 lines
338 B
TypeScript
9 lines
338 B
TypeScript
|
|
export const sortOptions = [
|
||
|
|
{ value: "creation-time", text: "Creation time" },
|
||
|
|
{ value: "last-modified", text: "Last modified" },
|
||
|
|
{ value: "title-a-to-z", text: "Title - A to Z" },
|
||
|
|
{ value: "title-z-to-a", text: "Title - Z to A" }
|
||
|
|
];
|
||
|
|
|
||
|
|
export const ALLOWED_MIME_TYPES = ["image/jpeg", "image/png", "image/svg+xml", "image/webp"];
|