11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
|
/// <reference types="vite/client" />
|
||
|
/// <reference types="vite-plugin-pwa/client" />
|
||
|
|
||
|
interface ImportMetaEnv {
|
||
|
readonly REACT_APP_BUILD_NO: string;
|
||
|
}
|
||
|
|
||
|
interface ImportMeta {
|
||
|
readonly env: ImportMetaEnv;
|
||
|
}
|