jamis
Version:
一种支持通过JSON配置方式生成页面的组件库
12 lines (11 loc) • 361 B
TypeScript
import React from 'react';
import type { LocationPickerProps } from './types';
export declare class LocationPickerWrap extends React.Component<LocationPickerProps> {
static defaultProps: {
vendor: string;
coordinatesType: string;
};
render(): JSX.Element;
}
export declare class LocationPickerRenderer extends LocationPickerWrap {
}