UNPKG

vue-auto-scale

Version:
34 lines (33 loc) 1.19 kB
import { PropsType } from './index'; declare function __VLS_template(): { attrs: Partial<{}>; slots: { default?(_: {}): any; }; refs: { autoScaleBox: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<PropsType, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { change: (scale: string | number, scale1: string | number) => any; }, string, import('vue').PublicProps, Readonly<PropsType> & Readonly<{ onChange?: ((scale: string | number, scale1: string | number) => any) | undefined; }>, { width: number; height: number; scaleType: number; delay: number; reverseScalingIds: string[] | string | null; parent: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { autoScaleBox: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };