mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-02-05 16:34:43 +00:00
15 lines
474 B
TypeScript
15 lines
474 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { LocalSite } from "./LocalSite";
|
|
import type { LocalSiteRateLimit } from "./LocalSiteRateLimit";
|
|
import type { Site } from "./Site";
|
|
import type { SiteAggregates } from "./SiteAggregates";
|
|
|
|
/**
|
|
* A site view.
|
|
*/
|
|
export type SiteView = {
|
|
site: Site;
|
|
local_site: LocalSite;
|
|
local_site_rate_limit: LocalSiteRateLimit;
|
|
counts: SiteAggregates;
|
|
};
|