Skip to content

clearItems

모바일 앱의 로컬 저장소의 모든 아이템을 삭제해요.

시그니처

typescript
declare function clearItems(): Promise<void>;

반환 값

  • Promise<void>

    아이템을 삭제하면 아무 값도 반환하지 않고 저장소가 초기화돼요.

예제

저장소 초기화하기

ts
import { Storage } from '@apps-in-toss/framework';

await Storage.clearItems();