constants.d.ts 353 B

12345678910
  1. import { InjectionKey } from "vue";
  2. //#region ../../packages/components/scrollbar/src/constants.d.ts
  3. interface ScrollbarContext {
  4. scrollbarElement: HTMLDivElement | undefined;
  5. wrapElement: HTMLDivElement | undefined;
  6. }
  7. declare const scrollbarContextKey: InjectionKey<ScrollbarContext>;
  8. //#endregion
  9. export { ScrollbarContext, scrollbarContextKey };