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

14 lines
391 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 { AdminPurgePersonId } from "./AdminPurgePersonId";
import type { PersonId } from "./PersonId";
/**
* When an admin purges a person.
*/
export type AdminPurgePerson = {
id: AdminPurgePersonId;
admin_person_id: PersonId;
reason?: string;
published: string;
};