mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-23 03:11:26 +00:00
Add taglines to site response.
This commit is contained in:
parent
0a0acce81c
commit
22b0777f51
3 changed files with 2 additions and 2 deletions
|
@ -252,4 +252,3 @@ export {
|
||||||
UploadImageResponse,
|
UploadImageResponse,
|
||||||
UserOperation,
|
UserOperation,
|
||||||
} from "./types/others";
|
} from "./types/others";
|
||||||
export * from "./websocket";
|
|
||||||
|
|
|
@ -10,5 +10,4 @@ export interface GetCommunityResponse {
|
||||||
moderators: Array<CommunityModeratorView>;
|
moderators: Array<CommunityModeratorView>;
|
||||||
online: number;
|
online: number;
|
||||||
discussion_languages: Array<LanguageId>;
|
discussion_languages: Array<LanguageId>;
|
||||||
default_post_language?: LanguageId;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
// 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.
|
||||||
import type { SiteView } from "./SiteView";
|
import type { SiteView } from "./SiteView";
|
||||||
|
import type { Tagline } from "./Tagline";
|
||||||
|
|
||||||
export interface SiteResponse {
|
export interface SiteResponse {
|
||||||
site_view: SiteView;
|
site_view: SiteView;
|
||||||
|
taglines: Array<Tagline>;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue