sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
17 lines (16 loc) • 473 B
TypeScript
import { type StyleValue } from 'vue';
import { type DefaultProps } from '../config';
export interface MarqueeProps {
rootStyle?: StyleValue;
rootClass?: string;
direction?: 'vertical' | 'horizontal';
delay?: number;
speed?: number;
}
export declare const defaultMarqueeProps: () => DefaultProps<MarqueeProps>;
export interface MarqueeSlots {
default?(props: Record<string, never>): any;
}
export interface MarqueeExpose {
update: () => void;
}