Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
325 Bytes
import { ActionJSON } from './action-json.interface.js'
export const actionHasDisabledComponent = (action: ActionJSON): boolean => (
typeof action.component !== 'undefined' && action.component === false
)
export const actionHasCustomComponent = (action: ActionJSON): boolean => (
typeof action.component === 'string'
)