Simulate File loading.

The SimulatedLoader extension can be configured with the SimulatedLoaderOptions object.

import { defineFilePond } from 'filepond';
import { locale } from 'filepond/locales/en-gb.js';
import { SimulatedLoader } from 'filepond/extensions/simulated-loader.js';

defineFilePond({
    locale,
    extensions: [
        // Add the SimulatedLoader extension and configure with SimulatedLoaderOptions object
        SimulatedLoader
    ]
})