mirror of
https://github.com/MCSManager/MCSManager.git
synced 2025-11-27 23:10:24 +08:00
19 lines
411 B
TypeScript
19 lines
411 B
TypeScript
/* eslint-disable no-unused-vars */
|
|
import { ComponentOptions } from "vue";
|
|
|
|
export {};
|
|
|
|
declare module "vue" {
|
|
export const componentOptions: ComponentOptions;
|
|
export interface GlobalComponents {
|
|
ATypographyParagraph: any;
|
|
ATypographyText: any;
|
|
ATypographyTitle: any;
|
|
}
|
|
}
|
|
|
|
declare module "@vue/runtime-core" {
|
|
interface ComponentCustomProperties {
|
|
$t: (...args: any[]) => string;
|
|
}
|
|
}
|