mirror of
https://github.com/DefectingCat/DefectingCat.github.io
synced 2025-07-15 16:51:37 +00:00
13 lines
160 B
TypeScript
13 lines
160 B
TypeScript
// [TODO]
|
|
export default function imageProcess({
|
|
src,
|
|
width,
|
|
quality,
|
|
}: {
|
|
src: string;
|
|
width: number;
|
|
quality?: number;
|
|
}) {
|
|
return `/${src}`;
|
|
}
|