UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

23 lines (21 loc) 621 B
import { ExtractPropTypes } from 'vue'; export declare const waterfallProps: { readonly col: { readonly type: NumberConstructor; readonly default: 4; }; readonly gutter: { readonly type: NumberConstructor; readonly default: 10; }; readonly colWidth: NumberConstructor; readonly fadeIn: { readonly type: BooleanConstructor; readonly default: true; }; }; export type WaterfallProps = ExtractPropTypes<typeof waterfallProps>; export declare const waterfallEmits: { update: () => boolean; }; export type WaterfallEmits = typeof waterfallEmits;