mirror of
https://github.com/youzan/vant.git
synced 2025-10-16 16:04:04 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import Vue, { DirectiveFunction, PluginFunction } from 'vue';
|
|
|
|
export interface Waterfall {
|
|
(type: string): DirectiveFunction;
|
|
install: PluginFunction<void>
|
|
}
|
|
|
|
export const Waterfall: Waterfall;
|