import Base from "./Base.js"; import type { IpBan as IpBanData } from "../generated/types.js"; interface IpBan extends IpBanData { } /** * Due to a global filter, the ip_addr is not present no matter your user level. * * @category Models * * @schema {@link https://e621.wiki/#model-IpBan IpBan} * * @see {@link https://e621.wiki/#model-IpBan Documentation} for more details. */ declare class IpBan extends Base { /** * Delete IP Ban * * You must be Admin+. * * @requiresApiKeyAuth * * @operationId {@link https://e621.wiki/#operations-IP_Bans-deleteIpBan deleteIpBan} * * @see {@link https://e621.wiki/#operations-IP_Bans-deleteIpBan Documentation} for more details. */ delete(): Promise; } export default IpBan;