//#region extensions/crypto/src/commands/trigger-commands.d.ts /** * /triggers — view and manage active triggers (price watches, cron schedules). * * Commands: * /triggers — list all active triggers with plan info * /triggers_price — list active price watches * /triggers_cron — list active cron-scheduled plans * /dead_letter — view terminal failures from the dead-letter log */ declare const triggersCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; declare const triggersPriceCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; declare const triggersCronCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; declare const deadLetterCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; //#endregion export { deadLetterCommand, triggersCommand, triggersCronCommand, triggersPriceCommand }; //# sourceMappingURL=trigger-commands.d.mts.map