UNPKG

446 BTypeScriptView Raw
1import type { CSSProperties } from 'vue';
2export type ImageFit = CSSProperties['objectFit'];
3export type ImagePosition = CSSProperties['objectPosition'];
4export type ImageThemeVars = {
5 imagePlaceholderTextColor?: string;
6 imagePlaceholderFontSize?: string;
7 imagePlaceholderBackground?: string;
8 imageLoadingIconSize?: string;
9 imageLoadingIconColor?: string;
10 imageErrorIconSize?: string;
11 imageErrorIconColor?: string;
12};