t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
38 lines (37 loc) • 1.1 kB
TypeScript
import type { ExtractPropTypes } from 'vue';
import type { PropType } from 'vue';
export declare const Props: {
readonly content: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly width: {
readonly type: NumberConstructor;
readonly default: () => number;
};
readonly height: {
readonly type: NumberConstructor;
readonly default: () => number;
};
readonly fontSize: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
readonly fontColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly image: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly block: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly zIndex: {
readonly type: NumberConstructor;
readonly default: () => number;
};
};
export declare type WatermarkPropsType = ExtractPropTypes<typeof Props>;