UNPKG

mmr-gl-react

Version:

React components for MMR GL JS-compatible libraries

8 lines (7 loc) 266 B
import type { ISource, CustomSource } from '../types'; export type SourceProps<SourceT> = (SourceT | CustomSource) & { id?: string; children?: any; }; declare function Source<SourceT extends ISource>(props: SourceProps<SourceT>): any; export default Source;