context.d.ts 293 B

12345678
  1. import React from 'react';
  2. import type { ListGridType } from '.';
  3. export interface ListConsumerProps {
  4. grid?: ListGridType;
  5. itemLayout?: string;
  6. }
  7. export declare const ListContext: React.Context<ListConsumerProps>;
  8. export declare const ListConsumer: React.Consumer<ListConsumerProps>;