UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

88 lines (87 loc) 2.6 kB
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, Ref, CSSProperties } from 'vue'; import type { WatermarkCSSPropertiesInterface as a } from './interface'; declare const _sfc_main: DefineComponent<{ 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; }; }, { prop: { readonly content?: unknown; readonly width?: unknown; readonly height?: unknown; readonly fontSize?: unknown; readonly fontColor?: unknown; readonly image?: unknown; readonly block?: unknown; readonly zIndex?: unknown; } & { fontSize: string | number; width: number; fontColor: string; zIndex: number; block: boolean; content: string; height: number; image: string; } & {}; watermarkStyleList: Ref<CSSProperties>; baseWatermark: a; imageWatermark: a; }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{ readonly content?: unknown; readonly width?: unknown; readonly height?: unknown; readonly fontSize?: unknown; readonly fontColor?: unknown; readonly image?: unknown; readonly block?: unknown; readonly zIndex?: unknown; } & { fontSize: string | number; width: number; fontColor: string; zIndex: number; block: boolean; content: string; height: number; image: string; } & {}>, { fontSize: string | number; width: number; fontColor: string; zIndex: number; block: boolean; content: string; height: number; image: string; }>; export default _sfc_main;