testmappackage
Version:
Maps package for the WeMeta marketplace
11 lines (10 loc) • 331 B
TypeScript
/// <reference types="react" />
interface IMap {
world: string;
setSelectedListing?: any;
standardizeListing?: () => any;
forSale?: boolean;
withControls?: boolean;
}
export declare function Map({ world, setSelectedListing, standardizeListing, forSale, withControls, }: IMap): JSX.Element;
export {};