UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

15 lines (14 loc) 559 B
import { BaseParamType } from '../../../params/_Base'; import { ParamType } from '../../../poly/ParamType'; import { ComplexParamJsonExporterData } from '../../../nodes/utils/io/IOController'; export declare class ParamJsonExporter<T extends BaseParamType> { protected _param: T; protected _complex_data: ComplexParamJsonExporterData<ParamType>; constructor(_param: T); required(): boolean; data(): any; private _data_simple; private _data_complex; protected _require_data_complex(): boolean; protected add_main(): void; }