lemmy-js-client/src/types/PendingFollow.ts
Nutomic 22fbe7eaeb
Private community (#371)
* 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>
2024-11-07 12:19:30 -05:00

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