You've already forked reloading-manager
10 lines
266 B
TypeScript
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
|
|
}
|
|
} |