mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2025-01-25 19:35:49 +00:00
Nutomic
22fbe7eaeb
* Private community * 0.20.0-private-community.1 * add missing files * 0.20.0-private-community.2 * update * 0.20.0-private-community.3 * rename * 0.20.0-private-community.4 * change * 0.20.0-private-community.5 * add file * 0.20.0-private-community.6 * update * 0.20.0-private-community.7 * 0.20.0-private-community.8 * lint * 0.20.0-private-community.9 * fix null * Updating types from main. --------- Co-authored-by: Dessalines <tyhou13@gmx.com>
11 lines
385 B
TypeScript
11 lines
385 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { Community } from "./Community";
|
|
import type { Person } from "./Person";
|
|
import type { SubscribedType } from "./SubscribedType";
|
|
|
|
export type PendingFollow = {
|
|
person: Person;
|
|
community: Community;
|
|
is_new_instance: boolean;
|
|
subscribed: SubscribedType;
|
|
};
|