mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-pwa/client" />
|
|
|
|
declare interface ImportMetaEnv {
|
|
readonly VITE_COMMIT_REF: string;
|
|
readonly VITE_APP_VERSION?: string;
|
|
readonly VITE_APP_DISTRIBUTION?: string;
|
|
}
|
|
|
|
declare interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|