11 lines
294 B
TypeScript
11 lines
294 B
TypeScript
import type { NodeDefinition } from "~/types/flow";
|
|
|
|
export default {
|
|
type: "log",
|
|
label: "日志",
|
|
category: "工具",
|
|
inputs: [{ id: "in", label: "In", type: "flow" }],
|
|
outputs: [{ id: "out", label: "Out", type: "flow" }],
|
|
defaultConfig: { message: "Hello World" }
|
|
} as NodeDefinition;
|