- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion 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>;
|
|
}
|