mirror of
https://github.com/sstent/aicyclingcoach-go.git
synced 2026-01-26 17:12:23 +00:00
6 lines
332 B
TypeScript
6 lines
332 B
TypeScript
/// <reference types="react" />
|
|
import { type CircleProps } from '@react-leaflet/core';
|
|
import { Circle as LeafletCircle } from 'leaflet';
|
|
export type { CircleProps } from '@react-leaflet/core';
|
|
export declare const Circle: import("react").ForwardRefExoticComponent<CircleProps & import("react").RefAttributes<LeafletCircle<any>>>;
|