lemmy-js-client/src/types/AdminBlockInstanceParams.ts
Nutomic efffc3c6e8
Instance blocks with mod log entry and expiration (#409)
* Instance blocks with mod log entry and expiration

* 0.20.0-instance-blocks.0

* fix methods

* 0.20.0-instance-blocks.1

* remove params

* 0.20.0-instance-blocks.2

* pass domain

* 0.20.0-instance-blocks.3

* add file

* 0.20.0-instance-blocks.4

* pass instance domain

* 0.20.0-instance-blocks.5
2024-12-02 17:26:30 -05:00

8 lines
231 B
TypeScript

// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type AdminBlockInstanceParams = {
instance: string;
block: boolean;
reason?: string;
expires?: string;
};