fix(RECIPE-0008): complete iteration 1 — resolve all TypeScript strict mode errors

This commit is contained in:
Giancarmine Salucci
2026-02-18 00:56:12 +01:00
parent c752db36f7
commit bf3e5c679f
11 changed files with 584 additions and 59 deletions

View File

@@ -306,7 +306,7 @@ class PushNotificationManager {
* Enhanced with validation and error handling for VAPID keys
* SSR-safe: uses window.atob only in browser context
*/
private urlBase64ToUint8Array(base64String: string): Uint8Array {
private urlBase64ToUint8Array(base64String: string): Uint8Array<ArrayBuffer> {
if (!browser) {
return new Uint8Array(0);
}