export interface IndexListDataItem {
  key: string
  title: string
  data: any[]
}

export type IndexListData = IndexListDataItem[]

export interface KeyListRectInfo {
  top: number
  height: number
}
