mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-12-22 19:01:27 +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,
|
||||
UserOperation,
|
||||
} from "./types/others";
|
||||
export * from "./websocket";
|
||||
|
|
|
@ -10,5 +10,4 @@ export interface GetCommunityResponse {
|
|||
moderators: Array<CommunityModeratorView>;
|
||||
online: number;
|
||||
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.
|
||||
import type { SiteView } from "./SiteView";
|
||||
import type { Tagline } from "./Tagline";
|
||||
|
||||
export interface SiteResponse {
|
||||
site_view: SiteView;
|
||||
taglines: Array<Tagline>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue