Files
dicebear--dicebear/apps/docs/env.d.ts
T
2026-07-13 12:25:08 +08:00

22 lines
490 B
TypeScript

/// <reference types="vitepress/client" />
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent;
export default component;
}
interface Umami {
track(event: string, data?: Record<string, string>): void;
}
declare const umami: Umami | undefined;
declare module 'three';
interface ImportMetaEnv {
readonly VITE_PRIVACY_POLICY_URL?: string;
readonly VITE_COOKIE_POLICY_URL?: string;
readonly VITE_LEGAL_NOTICE_URL?: string;
}