Files
astro-nozzy-house-news/src/utils.ts
T
2023-12-25 17:24:27 +00:00

11 lines
275 B
TypeScript

import type { ImageFileType } from "@components/types";
export function generateImageHyrdationFunction(dir: string) {
return (s: string, fileType?: ImageFileType, optimise?: boolean) => ({
dir: dir,
name: s,
fileType: fileType,
optimise: optimise,
});
}