mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 11:06:38 +08:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import type { Ref } from 'vue';
|
|
import BScroll from '@better-scroll/core';
|
|
|
|
/** BetterScroll暴露出的数据的类型 */
|
|
export interface ExposeBetterScroll {
|
|
bsInstance: Ref<BScroll>;
|
|
}
|