You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ctk/services/frontend/src/utils/data/libraries.ts

22 lines
431 B
TypeScript

import { NodeGroupType } from "../../types/enums";
import { INodeGroup } from "../../types";
export const nodeLibraries: INodeGroup[] = [
{
Id: 1,
Name: NodeGroupType.Services,
Description: "Services",
NodeTypes: [
{
Id: 1,
Name: "service",
Type: "SERVICE",
Description: "Service node",
NoInputs: 1,
NoOutputs: 1,
IsActive: true
}
]
}
];