11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
declare global {
|
|
// Build-time constant injected by Vite from package.json version.
|
|
const __APP_VERSION__: string;
|
|
|
|
namespace App {
|
|
// future-phase types added later
|
|
}
|
|
}
|
|
|
|
export {};
|