lemmy-js-client/src/types/SiteView.ts

16 lines
474 B
TypeScript
Raw Normal View History

// 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;
};