Migración desde workspace-v2/projects/template-saas/apps/backend Este repositorio es parte del estándar multi-repo v2 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
325 B
TypeScript
19 lines
325 B
TypeScript
// Mock for web-push
|
|
|
|
export const setVapidDetails = jest.fn();
|
|
export const sendNotification = jest.fn();
|
|
|
|
export interface PushSubscription {
|
|
endpoint: string;
|
|
keys: {
|
|
p256dh: string;
|
|
auth: string;
|
|
};
|
|
}
|
|
|
|
export interface SendResult {
|
|
statusCode: number;
|
|
body: string;
|
|
headers: Record<string, string>;
|
|
}
|