agent-ecosystem/src/renderer/vite-env.d.ts
iliya f08885d58f fix(updater): prevent installation of non-newer versions and enhance update notifications
- Added checks to ensure that only newer versions are installed during the update process.
- Updated the notification logic to suppress alerts for non-newer updates.
- Introduced a new method to compare version numbers, improving version management in the UpdaterService.
- Enhanced the release workflow by removing unnecessary file uploads and adding canonical updater metadata publishing for better asset management.
2026-03-30 15:24:23 +03:00

21 lines
594 B
TypeScript

/// <reference types="vite/client" />
declare const __APP_VERSION__: string;
declare module '*.png' {
const src: string;
// eslint-disable-next-line import/no-default-export -- Vite asset modules require default exports
export default src;
}
declare module '*.jpg' {
const src: string;
// eslint-disable-next-line import/no-default-export -- Vite asset modules require default exports
export default src;
}
declare module '*.svg' {
const src: string;
// eslint-disable-next-line import/no-default-export -- Vite asset modules require default exports
export default src;
}