upd: push notifikasi

This commit is contained in:
amel
2025-06-26 10:17:56 +08:00
parent 4fc2fa0455
commit 0b0ecc7791
7 changed files with 164 additions and 6 deletions

20
types/env.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
declare namespace NodeJS {
interface ProcessEnv {
DATABASE_URL?: string;
URL?: string;
WS_APIKEY?: string;
NEXT_PUBLIC_VAPID_PUBLIC_KEY?: string;
VAPID_PRIVATE_KEY?: string;
WIBU_REALTIME_KEY?: string;
FCM_KEY?: string;
GOOGLE_PROJECT_ID?: string;
GOOGLE_PRIVATE_KEY_ID?: string;
GOOGLE_PRIVATE_KEY?: string;
GOOGLE_CLIENT_EMAIL?: string;
GOOGLE_CLIENT_ID?: string;
GOOGLE_AUTH_URI?: string;
GOOGLE_TOKEN_URI?: string;
GOOGLE_AUTH_PROVIDER_CERT_URL?: string;
GOOGLE_CLIENT_CERT_URL?: string;
}
}