UNPKG

@polygonjs/polygonjs

Version:

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

20 lines (19 loc) 627 B
/** * Adds a delay to trigger received events * * * */ import { TypedEventNode } from './_Base'; import { NodeParamsConfig } from '../utils/params/ParamsConfig'; declare class DelayEventParamsConfig extends NodeParamsConfig { /** @param delay before dispatching (in milliseconds) */ delay: import("../utils/params/ParamsConfig").ParamTemplate<import("../../index_all").ParamType.INTEGER>; } export declare class DelayEventNode extends TypedEventNode<DelayEventParamsConfig> { paramsConfig: DelayEventParamsConfig; static type(): string; initializeNode(): void; private _process_input; } export {};