element-plus/packages/tokens/scrollbar.ts

11 lines
246 B
TypeScript

import type { InjectionKey } from 'vue'
export interface ScrollbarContext {
scrollbarElement: HTMLDivElement
wrapElement: HTMLDivElement
}
export const scrollbarContextKey: InjectionKey<ScrollbarContext> = Symbol(
'scrollbarContextKey'
)