2428313a22
Benachrichtigt Owner optional per VAPID/Web Push, wenn Collaborators Änderungen synchronisieren — ohne Klartext-Inhalte, mit Opt-in in den Einstellungen, Custom Service Worker und Deep-Link zum Logbuch. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
533 B
TypeScript
27 lines
533 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-pwa/react" />
|
|
/// <reference types="vite-plugin-pwa/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_VAPID_PUBLIC_KEY?: string
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv
|
|
}
|
|
|
|
declare module '*?raw' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
declare global {
|
|
const __APP_VERSION__: string
|
|
|
|
interface Window {
|
|
plausible?: (event: string, options?: { props?: Record<string, string | number | boolean> }) => void
|
|
}
|
|
}
|
|
|
|
export {}
|