Files
element-plus/packages/tokens/scrollbar.ts
2021-11-12 06:55:58 +08:00

11 lines
246 B
TypeScript

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