MCS-MCSManager/frontend/ant.d.ts
2025-05-07 15:55:02 +08:00

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;
}
}