UNPKG

phaser4-rex-plugins

Version:
20 lines (16 loc) 447 B
import Decorator from '../Decorator'; import BaseNode from '../BaseNode.js'; export default If; declare namespace If { interface IConfig extends Decorator.IConfig { expression?: BaseNode.ExpressionValue; conditionEvalBreak?: boolean; onFailState?: number; } } declare class If extends Decorator { constructor( config?: If.IConfig, nodePool?: BaseNode.NodePoolType ); }