12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
// Global type for MACRO compile-time constants
|
|
// These are normally injected by Bun's bundler via --define at compile time
|
|
declare const MACRO: {
|
|
VERSION: string
|
|
BUILD_TIME: string
|
|
FEEDBACK_CHANNEL: string
|
|
ISSUES_EXPLAINER: string
|
|
NATIVE_PACKAGE_URL: string
|
|
PACKAGE_URL: string
|
|
VERSION_CHANGELOG: string
|
|
}
|