This commit is contained in:
Felix Ableitner 2024-10-15 10:19:09 +02:00
parent e1bf7ece6f
commit 6201e76f14
2 changed files with 3 additions and 2 deletions

View file

@ -211,6 +211,7 @@ export { OpenGraphData } from "./types/OpenGraphData";
export { PaginationCursor } from "./types/PaginationCursor"; export { PaginationCursor } from "./types/PaginationCursor";
export { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset"; export { PasswordChangeAfterReset } from "./types/PasswordChangeAfterReset";
export { PasswordReset } from "./types/PasswordReset"; export { PasswordReset } from "./types/PasswordReset";
export { PendingFollow } from "./types/PendingFollow";
export { Person } from "./types/Person"; export { Person } from "./types/Person";
export { PersonAggregates } from "./types/PersonAggregates"; export { PersonAggregates } from "./types/PersonAggregates";
export { PersonId } from "./types/PersonId"; export { PersonId } from "./types/PersonId";

View file

@ -1,6 +1,6 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Person } from "./Person"; import type { PendingFollow } from "./PendingFollow";
export interface ListCommunityPendingFollowsResponse { export interface ListCommunityPendingFollowsResponse {
items: Array<Person>; items: Array<PendingFollow>;
} }