@opengis/fastify-table
Version:
core-plugins
17 lines • 492 B
TypeScript
import type { FastifyReply } from "fastify";
/**
* Апі використовується для зміни розміру фото за шляхом
*/
export default function resize({ query, }: {
query: {
filepath: string;
quality?: string | number;
size: string;
w?: string;
h?: string;
nocache?: any;
format?: string;
noimage?: any;
};
}, reply: FastifyReply): Promise<never>;
//# sourceMappingURL=resize.d.ts.map