Files
reloading-manager/frontend/src/vite-env.d.ts
2025-04-16 12:47:04 -04:00

10 lines
266 B
TypeScript

/// <reference types="vite/client" />
import {ComponentCustomProperties as GCS} from "@vue/runtime-core";
import {Account} from "appwrite";
declare module "@vue/runtime-core" {
interface ComponentCustomProperties extends GCS {
$account: Account
}
}