Skip to main content

api.getStores()

Description

Gets an object with the DataStore properties of the Filemanager

Usage

api.getStores(): object;

Returns

The method returns an object with the DataStore parameters:

{
data: DataStore // ( object of parameters )
}

Example

The example below shows how to output DataStore to the console:

<script>
import { Filemanager } from "@wx/svelte-filemanager";
import { getData, getDrive } from "./common/data";

let api;

$: if (api) {
const stores = api.getStores();
console.log("DataStore:", stores);
}
</script>

<Filemaanger data={getData()} drive={getDrive()} bind:api />

Related articles: