@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
21 lines (20 loc) • 883 B
text/typescript
import type { AppConfig } from '@nuxt/schema';
import type { ComponentConfig } from '../../types/tv';
import theme from '#build/b24ui/prose/img';
type ProseImg = ComponentConfig<typeof theme, AppConfig, 'img', 'b24ui.prose'>;
export interface ProseImgProps {
src: string;
alt: string;
width?: string | number;
height?: string | number;
/**
* Zoom image on click
* @defaultValue true
*/
zoom?: boolean;
class?: any;
b24ui?: ProseImg['slots'];
}
declare const __VLS_export: import("vue").DefineComponent<ProseImgProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseImgProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;