minishouyin/node_modules/antd/lib/grid/RowContext.d.ts

9 lines
291 B
TypeScript
Raw Normal View History

2025-11-12 11:35:57 +08:00
export type GutterUnit = number | string;
export type RowContextGutter = readonly [GutterUnit, GutterUnit];
export interface RowContextState {
gutter?: RowContextGutter;
wrap?: boolean;
}
declare const RowContext: import("react").Context<RowContextState>;
export default RowContext;