UNPKG

@polygonjs/polygonjs

Version:

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

20 lines (19 loc) 805 B
/** * sends a trigger when the listened object is about to be deleted * * */ import { TypedJsNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; import { JsType } from '../../poly/registers/nodes/types/Js'; import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController'; declare class OnObjectBeforeDeleteJsParamsConfig extends NodeParamsConfig { } export declare class OnObjectBeforeDeleteJsNode extends TypedJsNode<OnObjectBeforeDeleteJsParamsConfig> { readonly paramsConfig: OnObjectBeforeDeleteJsParamsConfig; static type(): JsType.ON_OBJECT_BEFORE_DELETE; isTriggering(): boolean; initializeNode(): void; setTriggeringLines(linesController: JsLinesCollectionController, triggeredMethods: string): void; } export {};