6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
import type { StartNodeType } from './types'
|
|
|
|
export const checkNodeValid = (_payload: StartNodeType) => {
|
|
return true
|
|
}
|