{"version":3,"file":"PingInteraction.mjs","sourceRoot":"","sources":["../../src/interactions/PingInteraction.mts"],"names":[],"mappings":"AACA,OAAO,eAAe,MAAM,uBAAuB,CAAC;AAEpD;;GAEG;AACH,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,eAAe;IAGxD,YAAY,WAA+B;QACvC,KAAK,CAAC,WAAW,CAAC,CAAC;IACvB,CAAC;CAOJ","sourcesContent":["import type { APIPingInteraction, InteractionType } from \"discord-api-types/v10\";\nimport BaseInteraction from \"./BaseInteraction.mjs\";\n\n/**\n * **Note:** This type of interaction is automatically handled when using `@riskybot/command` so you don't need to do anything with it.\n */\nexport default class PingInteraction extends BaseInteraction {\n    declare type: InteractionType.Ping;\n\n    constructor(interaction: APIPingInteraction) {\n        super(interaction);\n    }\n\n    // handle(response) {\n    //     response.send({ type: InteractionResponseType.Pong });\n\n    // }\n\n}\n"]}