Files
copilot-toolbox-template-121/node_modules/antd/es/list/context.d.ts
2026-01-16 02:20:32 +00:00

9 lines
293 B
TypeScript

import React from 'react';
import type { ListGridType } from '.';
export interface ListConsumerProps {
grid?: ListGridType;
itemLayout?: string;
}
export declare const ListContext: React.Context<ListConsumerProps>;
export declare const ListConsumer: React.Consumer<ListConsumerProps>;