Files
video-gen/video-gen-admin/node_modules/antd/lib/list/context.d.ts
T
2026-05-25 17:08:18 +08: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>;