//#region src/version.d.ts /** * DreamCLI's own build-time version constants. * * Not the app version configured via `cli().version(...)` — these identify * the framework build itself (diagnostics, bug reports, completion-script * stamps). Kept on a dedicated subpath so they stay out of root-entrypoint * import completions. * * Replaced by tsdown `define` during bundling. In development (unbundled), * the declared globals resolve to the `'dev'` fallback. * * @module @kjanat/dreamcli/version */ /** Package version (e.g. `"0.9.1"`). `"dev"` when running unbundled. */ declare const DREAMCLI_VERSION: string; /** Git short SHA (e.g. `"f9b5f1a"`). `"dev"` when running unbundled. */ declare const DREAMCLI_REVISION: string; //#endregion export { DREAMCLI_REVISION, DREAMCLI_VERSION };