mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-01-25 19:35:49 +00:00
13 lines
452 B
TypeScript
13 lines
452 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";
|
||
|
|
||
|
export interface SiteView {
|
||
|
site: Site;
|
||
|
local_site: LocalSite;
|
||
|
local_site_rate_limit: LocalSiteRateLimit;
|
||
|
counts: SiteAggregates;
|
||
|
}
|