@nuxtwind/components
Version:
Component Library for Nuxt 3 using TailwindCSS
31 lines (30 loc) • 1.14 kB
TypeScript
import type { AppbarProps } from '../types/props.js';
declare var __VLS_1: {}, __VLS_15: {}, __VLS_27: {};
type __VLS_Slots = {} & {
'navigation-icon'?: (props: typeof __VLS_1) => any;
} & {
default?: (props: typeof __VLS_15) => any;
} & {
extension?: (props: typeof __VLS_27) => any;
};
declare const __VLS_component: import("vue").DefineComponent<AppbarProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"navigation-icon-click": (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<AppbarProps> & Readonly<{
"onNavigation-icon-click"?: ((...args: any[]) => any) | undefined;
}>, {
bottom: boolean;
fixed: boolean;
absolute: boolean;
sticky: boolean;
extension: boolean;
shrinkOnScroll: boolean;
elevateOnScroll: boolean;
navigationIcon: boolean | object;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};