element-plus/packages/tokens/row.ts
2022-03-07 10:35:11 +08:00

8 lines
189 B
TypeScript

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