7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import type { ComputedRef, InjectionKey } from 'vue';
|
|
interface RowContext {
|
|
gutter: ComputedRef<number>;
|
|
}
|
|
export declare const rowContextKey: InjectionKey<RowContext>;
|
|
export {};
|