useCreateNodeKey.ts 265 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import type { NodeItemConfigType } from '../types/node'; export function useCreateNodeKey(scope: string) { return { key: scope, createComponentKey: `VC_CREATE_${scope}`, connectionComponentKey: `VCC_CONNECTION_${scope}`, } as NodeItemConfigType; }