context.d.ts 330 B

123456789101112
  1. import React from 'react';
  2. export declare const OverflowContext: React.Context<{
  3. prefixCls: string;
  4. responsive: boolean;
  5. order: number;
  6. registerSize: (key: React.Key, width: number | null) => void;
  7. display: boolean;
  8. invalidate: boolean;
  9. item?: any;
  10. itemKey?: React.Key;
  11. className?: string;
  12. }>;