For the complete documentation index, see llms.txt. This page is also available as Markdown.

Storage.clearItems

Feature description

Deletes all items in the mobile app's local storage and initializes the storage.

Type

Storage.clearItems(): Promise<void>;

Params

None

Response

None

Example code

JavaScript

import { Storage } from "@apps-in-toss/web-framework";

await Storage.clearItems();

Was this helpful?