This repository has been archived on 2026-04-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
chrom-tool/src/vite-env.d.ts
Julian Freeman 837012d57f show version
2026-04-17 17:57:31 -04:00

10 lines
229 B
TypeScript

/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare const __APP_VERSION__: string;