convert all .md to .mdx

This commit is contained in:
Joel Wetzell
2026-03-28 14:59:10 -05:00
parent 694c0e505a
commit a8fc730eed
61 changed files with 0 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
---
title: Timer
sidebar:
order: 1
---
The `time.timer` module emits only one message after a specified duration. Sending any message to this module will reset the timer.
- **type**: `time.timer`
- **params**:
- **duration**: time in milliseconds to wait before emitting message
### Example snippet
Emits a message 5 seconds after the module is initialized
```yaml
- id: 5secs
type: time.timer
params:
duration: 5000
```