UNPKG

@polygonjs/polygonjs

Version:

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

11 lines (10 loc) 269 B
"use strict"; import { ParamConfig } from "../../utils/params/ParamsConfig"; export function DefaultFolderParamConfig(Base) { return class Mixin extends Base { constructor() { super(...arguments); this.default = ParamConfig.FOLDER(null); } }; }