UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

17 lines (16 loc) 461 B
/** @format */ export declare type ScrollType = 'default' | 'main'; export interface CollapseContainerOptions { canExpand?: boolean; title?: string; helpMessage?: Array<any> | string; } export interface ScrollContainerOptions { enableScroll?: boolean; type?: ScrollType; } export declare type ScrollActionType = RefType<{ scrollBottom: () => void; getScrollWrap: () => Nullable<HTMLElement>; scrollTo: (top: number) => void; }>;