@nuxt/ui
Version:
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
29 lines (28 loc) • 1.07 kB
TypeScript
import type { AppConfig } from '@nuxt/schema';
import type { ComponentConfig } from '../types/tv';
import theme from '#build/ui/footer';
type Footer = ComponentConfig<typeof theme, AppConfig, 'footer'>;
export interface FooterProps {
/**
* The element or component this component should render as.
* @defaultValue 'footer'
*/
as?: any;
class?: any;
ui?: Footer['slots'];
}
export interface FooterSlots {
left(props?: {}): any;
default(props?: {}): any;
right(props?: {}): any;
top(props?: {}): any;
bottom(props?: {}): any;
}
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<FooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, FooterSlots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};