This commit is contained in:
Felix Ableitner 2024-12-13 15:37:28 +01:00
parent 77b0deb01f
commit 42bac94699
2 changed files with 3 additions and 6 deletions

View file

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

View file

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