row.d.ts 185 B

123456
  1. import type { ComputedRef, InjectionKey } from 'vue';
  2. interface RowContext {
  3. gutter: ComputedRef<number>;
  4. }
  5. export declare const rowContextKey: InjectionKey<RowContext>;
  6. export {};