index.ts 351 Bytes
import type { CategoryConfigType } from '../../types/node';
import { RuleNodeTypeEnum } from '../index.type';

export const EntryCategoryConfig: CategoryConfigType = {
  category: RuleNodeTypeEnum.ENTRY,
  backgroundColor: '#95E898',
  title: '入口',
  icon: 'material-symbols:input-sharp',
  description: '使用配置条件筛选传入消息',
};