mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-08 08:05:03 +00:00
22 lines
743 B
TypeScript
22 lines
743 B
TypeScript
import { Sticker } from "discord.js";
|
|
import { GuildPluginData } from "knub";
|
|
import { LogType } from "../../../data/LogType.js";
|
|
import { createTypedTemplateSafeValueContainer } from "../../../templateFormatter.js";
|
|
import { stickerToTemplateSafeSticker } from "../../../utils/templateSafeObjects.js";
|
|
import { LogsPluginType } from "../types.js";
|
|
import { log } from "../util/log.js";
|
|
|
|
export interface LogStickerDeleteData {
|
|
sticker: Sticker;
|
|
}
|
|
|
|
export function logStickerDelete(pluginData: GuildPluginData<LogsPluginType>, data: LogStickerDeleteData) {
|
|
return log(
|
|
pluginData,
|
|
LogType.STICKER_DELETE,
|
|
createTypedTemplateSafeValueContainer({
|
|
sticker: stickerToTemplateSafeSticker(data.sticker),
|
|
}),
|
|
{},
|
|
);
|
|
}
|