@nuxt/ui
Version:
A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.
27 lines (26 loc) • 1.04 kB
text/typescript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/ui/page-aside';
import type { ComponentConfig } from '../types/tv';
type PageAside = ComponentConfig<typeof theme, AppConfig, 'pageAside'>;
export interface PageAsideProps {
/**
* The element or component this component should render as.
* @defaultValue 'aside'
*/
as?: any;
class?: any;
ui?: PageAside['slots'];
}
export interface PageAsideSlots {
top(props?: {}): any;
default(props?: {}): any;
bottom(props?: {}): any;
}
declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<PageAsideProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<PageAsideProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, PageAsideSlots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};