10 lines
353 B
TypeScript
10 lines
353 B
TypeScript
import { InjectionKey } from "vue";
|
|
|
|
//#region ../../packages/components/scrollbar/src/constants.d.ts
|
|
interface ScrollbarContext {
|
|
scrollbarElement: HTMLDivElement | undefined;
|
|
wrapElement: HTMLDivElement | undefined;
|
|
}
|
|
declare const scrollbarContextKey: InjectionKey<ScrollbarContext>;
|
|
//#endregion
|
|
export { ScrollbarContext, scrollbarContextKey }; |