mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-21 03:12:10 +08:00
13 lines
255 B
TypeScript
13 lines
255 B
TypeScript
import { ComponentOptions } from "vue";
|
|
|
|
export {};
|
|
|
|
declare module "vue" {
|
|
export const componentOptions: ComponentOptions;
|
|
export interface GlobalComponents {
|
|
ATypographyParagraph: any;
|
|
ATypographyText: any;
|
|
ATypographyTitle: any;
|
|
}
|
|
}
|