mirror of
https://github.com/litruv/lit.ruv.wtf.git
synced 2026-07-24 10:46:03 +10:00
update to node site
This commit is contained in:
25
website/scripts/nodes/index.js
Normal file
25
website/scripts/nodes/index.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* @file index.js
|
||||
* Imports all node classes so they self-register with NodeRegistry.
|
||||
* Import this module once at app startup before rendering any nodes.
|
||||
*/
|
||||
|
||||
export { NodeBase } from './NodeBase.js';
|
||||
export { NodeRegistry } from './NodeRegistry.js';
|
||||
export { NodeExecutionContext } from './NodeExecutionContext.js';
|
||||
export { NodeRenderContext } from './NodeRenderContext.js';
|
||||
|
||||
// Node types — each file calls NodeRegistry.UCLASS_Register on load
|
||||
export { PrintNode } from './PrintNode.js';
|
||||
export { SequenceNode } from './SequenceNode.js';
|
||||
export { CustomEventNode } from './CustomEventNode.js';
|
||||
export { ButtonNode } from './ButtonNode.js';
|
||||
export { TimerNode } from './TimerNode.js';
|
||||
export { InfoNode } from './InfoNode.js';
|
||||
export { PureNode } from './PureNode.js';
|
||||
export { MatrixChatNode } from './MatrixChatNode.js';
|
||||
export { GetMatrixChatNode } from './GetMatrixChatNode.js';
|
||||
export { ChatConnectNode } from './ChatConnectNode.js';
|
||||
export { BindEventNode } from './BindEventNode.js';
|
||||
export { LottieNode } from './LottieNode.js';
|
||||
export { RandomNameNode } from './RandomNameNode.js';
|
||||
Reference in New Issue
Block a user