Files
boc/cc-frontend/node_modules/react-leaflet/lib/Pane.d.ts
T

10 lines
318 B
TypeScript
Raw Normal View History

import React, { type CSSProperties, type ReactNode } from 'react';
export interface PaneProps {
children?: ReactNode;
className?: string;
name: string;
pane?: string;
style?: CSSProperties;
}
export declare const Pane: React.ForwardRefExoticComponent<PaneProps & React.RefAttributes<HTMLElement>>;