@deck.gl/json
Version:
JSON format rendering components for deck.gl
19 lines • 591 B
TypeScript
import JSONConfiguration from "./json-configuration.js";
export type JSONConverterProps = {
configuration: JSONConfiguration | Record<string, any>;
onJSONChange: any;
};
export default class JSONConverter {
log: Console;
configuration: JSONConfiguration;
onJSONChange: () => void;
json: null;
convertedJson: null;
constructor(props: any);
finalize(): void;
setProps(props: JSONConverterProps): void;
mergeConfiguration(config: any): void;
convert(json: any): any;
convertJson(json: any): any;
}
//# sourceMappingURL=json-converter.d.ts.map