UNPKG

@eslamdevui/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

31 lines (30 loc) 1.16 kB
import theme from '#build/ui/blog-posts'; import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig, BlogPostProps } from '../types'; type BlogPosts = ComponentConfig<typeof theme, AppConfig, 'blogPosts'>; export interface BlogPostsProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; posts?: BlogPostProps[]; /** * The orientation of the blog posts. * @defaultValue 'horizontal' */ orientation?: BlogPosts['variants']['orientation']; class?: any; } export interface BlogPostsSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<BlogPostsProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<BlogPostsProps> & Readonly<{}>, { orientation: BlogPosts["variants"]["orientation"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, BlogPostsSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };