context.d.ts 172 B

1234
  1. import * as React from 'react';
  2. import type { AntAnchor } from './Anchor';
  3. declare const AnchorContext: React.Context<AntAnchor | undefined>;
  4. export default AnchorContext;