UNPKG

@polygonjs/polygonjs

Version:

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

12 lines (11 loc) 483 B
import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; export declare abstract class BaseTriggerJsNode<K extends NodeParamsConfig> extends TypedJsNode<K> { initializeNode(): void; } declare class BaseTriggerJsParamsConfig extends NodeParamsConfig { } export declare abstract class ParamlessBaseTriggerJsNode extends BaseTriggerJsNode<BaseTriggerJsParamsConfig> { readonly paramsConfig: BaseTriggerJsParamsConfig; } export {};