amis-rpc-design/node_modules/antd/lib/list/context.d.ts

9 lines
293 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
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>;