前端初始化
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
import { IconPropType } from "../../../utils/vue/icon.js";
|
||||
import { RateProps } from "./rate.js";
|
||||
import * as _$vue from "vue";
|
||||
|
||||
//#region ../../packages/components/rate/src/rate.vue.d.ts
|
||||
declare function setCurrentValue(value: number, event?: MouseEvent): void;
|
||||
declare function resetCurrentValue(): void;
|
||||
declare const __VLS_export: _$vue.DefineComponent<RateProps, {
|
||||
/** @description set current value */setCurrentValue: typeof setCurrentValue; /** @description reset current value */
|
||||
resetCurrentValue: typeof resetCurrentValue;
|
||||
}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
|
||||
"update:modelValue": (value: number) => void;
|
||||
change: (value: number) => void;
|
||||
}, string, _$vue.PublicProps, Readonly<RateProps> & Readonly<{
|
||||
onChange?: ((value: number) => any) | undefined;
|
||||
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
||||
}>, {
|
||||
disabled: boolean;
|
||||
id: string;
|
||||
modelValue: number;
|
||||
max: number;
|
||||
textColor: string;
|
||||
colors: string[] | Record<number, string>;
|
||||
lowThreshold: number;
|
||||
highThreshold: number;
|
||||
voidColor: string;
|
||||
disabledVoidColor: string;
|
||||
icons: Array<IconPropType> | Record<number, IconPropType>;
|
||||
voidIcon: IconPropType;
|
||||
disabledVoidIcon: IconPropType;
|
||||
texts: string[];
|
||||
scoreTemplate: string;
|
||||
}, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
|
||||
declare const _default: typeof __VLS_export;
|
||||
//#endregion
|
||||
export { _default as default };
|
||||
Reference in New Issue
Block a user