UNPKG

y-design-ssr

Version:

SSR component library of YUI with Vue3

14 lines (13 loc) 294 B
import { Slot } from 'vue'; export type TypeInfo = { imgUrl?: string; title?: string; subTitle?: string; slot?: Slot; imgSlot?: Slot; titleIconSlot?: Slot; }; export declare const empty: { add(type: string, info: TypeInfo): void; use(type: string): TypeInfo; };