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'
)