1.0.0:first commit

This commit is contained in:
2026-03-26 01:23:19 +08:00
commit f8d5b11567
23562 changed files with 2853775 additions and 0 deletions

32
client/node_modules/element-plus/lib/utils/vue/icon.d.ts generated vendored Executable file
View File

@@ -0,0 +1,32 @@
import * as vue from "vue";
import { Component } from "vue";
import { Loading } from "@element-plus/icons-vue";
//#region ../../packages/utils/vue/icon.d.ts
type IconPropType = string | Component;
declare const iconPropType: vue.PropType<string | Component>;
declare const CloseComponents: {
Close: any;
};
declare const TypeComponents: {
Close: any;
SuccessFilled: any;
InfoFilled: any;
WarningFilled: any;
CircleCloseFilled: any;
};
declare const TypeComponentsMap: {
primary: any;
success: any;
warning: any;
error: any;
info: any;
};
declare const ValidateComponentsMap: {
validating: any;
success: any;
error: any;
};
type IconComponent = typeof Loading;
//#endregion
export { CloseComponents, IconComponent, IconPropType, TypeComponents, TypeComponentsMap, ValidateComponentsMap, iconPropType };