mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
16 lines
336 B
TypeScript
16 lines
336 B
TypeScript
import type { ComponentPublicInstance } from 'vue';
|
|
import type { IndexBarProps } from './IndexBar';
|
|
|
|
export type IndexBarProvide = {
|
|
props: IndexBarProps;
|
|
};
|
|
|
|
export type IndexBarExpose = {
|
|
scrollTo: (index: string | number) => void;
|
|
};
|
|
|
|
export type IndexBarInstance = ComponentPublicInstance<
|
|
IndexBarProps,
|
|
IndexBarExpose
|
|
>;
|