Properties
actionTransform
Action to run to trigger this extension, defaults to ‘transform’
actionTransform?: string
actionLoad
Action to run to trigger file load
actionLoad?: string
shouldTransform
Determines if we should transform the entry, if true, the actionTransfrom prop is set automatically. When this prop is set the actionTransform prop cannot be set to false to reset the transform
shouldTransform?: (entry: FilePondEntry) => Promise<boolean> | boolean
parallel
How many transform operations can run in parallel, defaults to 1
parallel?: number
filterEntry
Determines if this entry is allowed to transform
filterEntry?: (entry: FilePondEntry) => Promise<boolean> | boolean