1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00
vant/types/waterfall.d.ts

9 lines
199 B
TypeScript

import Vue, { DirectiveFunction, PluginFunction } from 'vue';
export interface Waterfall {
(type: string): DirectiveFunction;
install: PluginFunction<void>
}
export const Waterfall: Waterfall;