blob: f01ea51fb16bd5ceef6703182a0293a6cc6306f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/// <reference types="vitepress/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare global {
interface Window {
yue?: {
version: () => string;
tolua: (code: string, ...args: unknown[]) => [string, string];
exec: (code: string) => string;
};
}
}
export {};
|