1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-26 11:26:35 +08:00
vant/types/waterfall.d.ts

9 lines
195 B
TypeScript

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