mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-22 19:01:27 +00:00
rename params
This commit is contained in:
parent
e36dbd84f5
commit
ed90884fdd
3 changed files with 5 additions and 5 deletions
|
@ -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() {
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
|
||||
export type ImageProxyParams = {
|
||||
url: string;
|
||||
format: string | null;
|
||||
thumbnail: number | null;
|
||||
file_type: string | null;
|
||||
max_size: number | null;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue