element-plus/packages/tokens/row.ts

8 lines
189 B
TypeScript
Raw Normal View History

import type { ComputedRef, InjectionKey } from 'vue'
interface RowContext {
gutter: ComputedRef<number>
}
export const rowContextKey: InjectionKey<RowContext> = Symbol('rowContextKey')