From 281fb4af6b8bb26d01aceb5ad528ac13a6337604 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Tue, 7 Oct 2025 04:45:03 +0000 Subject: [PATCH] docs(examples): update enterprise usage example - Update examples/enterprise-usage.ts with generic polling interface - Include comprehensive enterprise integration patterns - Add advanced configuration examples for production deployments - Improve documentation and code examples for enterprise use cases --- examples/enterprise-usage.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/enterprise-usage.ts b/examples/enterprise-usage.ts index 2751c76..a8f0a0c 100644 --- a/examples/enterprise-usage.ts +++ b/examples/enterprise-usage.ts @@ -226,8 +226,8 @@ async function implementRateLimiting() { const plugin = new DailyNotification(); class RateLimiter { - private lastNotificationTime: number = 0; - private minInterval: number = 60000; // 1 minute + private lastNotificationTime = 0; + private minInterval = 60000; // 1 minute async scheduleWithRateLimit(options: NotificationOptions): Promise { const now = Date.now();