@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
16 lines (15 loc) • 804 B
TypeScript
import { type ExtractPublicPropTypes } from 'vue';
import { type ThemeComponent } from '../../composables/useTheme';
declare const imageProps: {
src: StringConstructor;
};
export type ImageProps = ExtractPublicPropTypes<typeof imageProps>;
type InternalClasses = 'wrapper';
export interface ImageTheme extends ThemeComponent<ImageProps, InternalClasses> {
}
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
src: StringConstructor;
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
src: StringConstructor;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;