UserFuncProps
export type UserFuncProps = {
arguments: {
isOptional: boolean
name: string
type: TypeSchema
}[]
castConfig: CastConfig
name: string
requiresCurrentScript: boolean
requiresScriptContext: boolean
returns??: TypeSchema
validatorIndices??: Record<string, number>
}