@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
7 lines (5 loc) • 360 B
text/typescript
import {ParamValuesTypeMap} from '../../engine/params/types/ParamValuesTypeMap';
import {ParamType} from '../../engine/poly/ParamType';
import {PolyDictionary} from '../../types/GlobalTypes';
export type DefaultOperationParam<T extends ParamType> = ParamValuesTypeMap[T];
export type DefaultOperationParams = PolyDictionary<DefaultOperationParam<ParamType>>;