@nuxt/ui
Version:
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
33 lines (32 loc) • 1.19 kB
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/ui/page-logos';
import type { MarqueeProps } from '../types';
import type { ComponentConfig } from '../types/tv';
type PageLogos = ComponentConfig<typeof theme, AppConfig, 'pageLogos'>;
type PageLogosItem = {
src: string;
alt: string;
} | string;
export interface PageLogosProps {
/**
* The element or component this component should render as.
* @defaultValue 'div'
*/
as?: any;
title?: string;
items?: PageLogosItem[];
marquee?: boolean | MarqueeProps;
class?: any;
ui?: PageLogos['slots'];
}
export interface PageLogosSlots {
default(props?: {}): any;
}
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<PageLogosProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PageLogosProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, PageLogosSlots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};