Simulate storing a file.

The SimulatedStore extension can be configured with the SimulatedStoreOptions object.

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

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