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

Storage.removeItem

Feature description

Deletes the item corresponding to a specific key from the mobile app's local storage.

Type

Storage.removeItem(key: string): Promise<void>;

Params

  • key: string — The key to delete.

Response

None

Example code

JavaScript

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

await Storage.removeItem("my-key");

Was this helpful?