yyg1378265336
2025-02-26 61900b1f71f4c9048cbc48ed6f4b41ccfa1a6ce4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type ScrollType = 'default' | 'main';
 
export interface CollapseContainerOptions {
  canExpand?: boolean;
  title?: string;
  helpMessage?: Array<any> | string;
}
export interface ScrollContainerOptions {
  enableScroll?: boolean;
  type?: ScrollType;
}
 
export type ScrollActionType = RefType<{
  scrollBottom: () => void;
  getScrollWrap: () => Nullable<HTMLElement>;
  scrollTo: (top: number) => void;
}>;