UNPKG

@polygonjs/polygonjs

Version:

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

8 lines (7 loc) 282 B
import {Constructor} from '../../../../types/GlobalTypes'; import {ParamConfig} from '../../utils/params/ParamsConfig'; export function DefaultFolderParamConfig<TBase extends Constructor>(Base: TBase) { return class Mixin extends Base { default = ParamConfig.FOLDER(null); }; }