1 | import type { ComponentPublicInstance } from 'vue';
|
2 | import type { RollingTextProps } from './RollingText';
|
3 | export type RollingTextDirection = 'up' | 'down';
|
4 | export type RollingTextStopOrder = 'ltr' | 'rtl';
|
5 | export type RollingTextExpose = {
|
6 | start: () => void;
|
7 | reset: () => void;
|
8 | };
|
9 | export type RollingTextInstance = ComponentPublicInstance<RollingTextProps, RollingTextExpose>;
|
10 | export type RollingTextThemeVars = {
|
11 | rollingTextBackground?: string;
|
12 | rollingTextColor?: string;
|
13 | rollingTextFontSize?: string;
|
14 | rollingTextGap?: string;
|
15 | rollingTextItemWidth?: string;
|
16 | rollingTextItemBorderRadius?: string;
|
17 | };
|