contextKey.d.ts 194 B

123456
  1. import type { InjectionKey, Ref } from 'vue';
  2. export interface ListContext {
  3. grid?: Ref<any>;
  4. itemLayout?: Ref<string>;
  5. }
  6. export declare const ListContextKey: InjectionKey<ListContext>;