mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 20:31:12 +00:00
Regenerating types from main. (#197)
This commit is contained in:
parent
140c756ea2
commit
b58fbb51e0
3 changed files with 12 additions and 2 deletions
|
@ -235,10 +235,16 @@ export { SiteResponse } from "./types/SiteResponse";
|
|||
export { SiteView } from "./types/SiteView";
|
||||
export { SortType } from "./types/SortType";
|
||||
export { SubscribedType } from "./types/SubscribedType";
|
||||
export { SuccessResponse } from "./types/SuccessResponse";
|
||||
export { Tagline } from "./types/Tagline";
|
||||
export { TransferCommunity } from "./types/TransferCommunity";
|
||||
export { UpdateTotp } from "./types/UpdateTotp";
|
||||
export { UpdateTotpResponse } from "./types/UpdateTotpResponse";
|
||||
export { VerifyEmail } from "./types/VerifyEmail";
|
||||
export { VerifyEmailResponse } from "./types/VerifyEmailResponse";
|
||||
export { UploadImage, UploadImageResponse, ImageFile } from "./types/others";
|
||||
export {
|
||||
UploadImage,
|
||||
UploadImageResponse,
|
||||
ImageFile,
|
||||
DeleteImage,
|
||||
} from "./types/others";
|
||||
|
|
|
@ -16,7 +16,6 @@ export interface LocalUser {
|
|||
interface_language: string;
|
||||
show_avatars: boolean;
|
||||
send_notifications_to_email: boolean;
|
||||
validator_time: string;
|
||||
show_scores: boolean;
|
||||
show_bot_accounts: boolean;
|
||||
show_read_posts: boolean;
|
||||
|
|
5
src/types/SuccessResponse.ts
Normal file
5
src/types/SuccessResponse.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
export interface SuccessResponse {
|
||||
success: boolean;
|
||||
}
|
Loading…
Reference in a new issue