mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-21 02:56:38 +08:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
/** vue 的defineExpose导出的类型 */
|
|
declare namespace Expose {
|
|
interface BetterScroll {
|
|
instance: import('@better-scroll/core').BScrollInstance;
|
|
}
|
|
|
|
interface ImageVerify {
|
|
/** 获取图片验证码 */
|
|
getImgCode(): void;
|
|
}
|
|
}
|