mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-23 03:11:26 +00:00
fix null
This commit is contained in:
parent
77b0deb01f
commit
42bac94699
2 changed files with 3 additions and 6 deletions
|
@ -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;
|
|
||||||
};
|
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue