@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
10 lines (9 loc) • 528 B
TypeScript
import { Object3D } from 'three';
import { ObjectNamedFunction3 } from './_Base';
import { ParamConvertibleJsType } from '../nodes/utils/io/connections/Js';
import { Ref } from '@vue/reactivity';
import { AttribValue } from '../../types/GlobalTypes';
export declare class getChildrenAttributesRef extends ObjectNamedFunction3<[string, string, Array<Ref<AttribValue>>]> {
static type(): string;
func(object3D: Object3D, attribName: string, type: ParamConvertibleJsType, values: Ref<AttribValue>[]): Ref<AttribValue>[];
}