@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
62 lines (61 loc) • 1.97 kB
TypeScript
import type { ExtractPublicPropTypes } from 'vue';
import { type ThemeComponent } from '../../composables/useTheme';
declare const linkProps: {
tag: {
type: StringConstructor;
default: string;
};
to: (ObjectConstructor | StringConstructor)[];
shadow: BooleanConstructor;
external: BooleanConstructor;
underline: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
};
export type LinkProps = ExtractPublicPropTypes<typeof linkProps>;
type InternalClasses = 'wrapper';
export interface LinkTheme extends ThemeComponent<LinkProps, InternalClasses> {
}
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
tag: {
type: StringConstructor;
default: string;
};
to: (ObjectConstructor | StringConstructor)[];
shadow: BooleanConstructor;
external: BooleanConstructor;
underline: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
tag: {
type: StringConstructor;
default: string;
};
to: (ObjectConstructor | StringConstructor)[];
shadow: BooleanConstructor;
external: BooleanConstructor;
underline: BooleanConstructor;
color: {
readonly type: StringConstructor;
readonly default: string | undefined;
};
}>> & Readonly<{}>, {
tag: string;
color: string;
shadow: boolean;
underline: boolean;
external: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};