rename params

This commit is contained in:
Felix Ableitner 2024-12-13 14:44:34 +01:00
parent e36dbd84f5
commit ed90884fdd
3 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@ const exportRegex = /export\s+(?:enum|interface|type)\s+([A-Za-z0-9_]+)/g;
const baseExports = [
'export * from "./http";',
'export {UploadImage,UploadImageResponse,ImageFile,DeleteImage} from "./other_types";',
'export {UploadImage} from "./other_types";',
];
async function putTypesInIndex() {

View file

@ -1,6 +1,6 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type ImageGetParams = {
format: string | null;
thumbnail: number | null;
file_type: string | null;
max_size: number | null;
};

View file

@ -2,6 +2,6 @@
export type ImageProxyParams = {
url: string;
format: string | null;
thumbnail: number | null;
file_type: string | null;
max_size: number | null;
};