Files
nodarium/app/src/lib/node-registry/debugNode.ts
Max Richter bf6f632d27
Some checks failed
🚀 Lint & Test & Deploy / release (pull_request) Failing after 1m22s
feat: add shortcut to quick connect to debug
2026-02-12 22:27:11 +01:00

22 lines
329 B
TypeScript

const data: Record<string, unknown> = {};
export function clearDebugData() {
for (const key in data) {
delete data[key];
}
}
export function getDebugData() {
return { ...data };
}
export const debugNode = {
id: 'max/plantarium/debug',
inputs: {
input: {
type: '*'
}
},
execute() {}
} as const;