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

Storage.removeItem

기능 설명

모바일 앱의 로컬 저장소에서 특정 키에 해당하는 아이템을 삭제해요.

타입

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

Params

  • key: string — 삭제할 키예요.

Response

없음

예시 코드

JavaScript

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

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

도움이 되었나요?