mirror of
https://github.com/dergigi/boris.git
synced 2026-01-08 17:34:52 +01:00
19 lines
480 B
TypeScript
19 lines
480 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_DEFAULT_ARTICLE_NADDR: string
|
|
}
|
|
|
|
declare module '*.svg?raw' {
|
|
const content: string
|
|
export default content
|
|
}
|
|
|
|
// Build-time defines injected by Vite in vite.config.ts
|
|
declare const __APP_VERSION__: string
|
|
declare const __GIT_COMMIT__: string
|
|
declare const __GIT_BRANCH__: string
|
|
declare const __BUILD_TIME__: string
|
|
declare const __GIT_COMMIT_URL__: string
|
|
declare const __RELEASE_URL__: string
|