Skip to main content

Interface: AnchorStorageLike

Defined in: src/world/anchors/LocalStorageAnchorStore.ts:5

The subset of the Storage API this store depends on.

Methods

getItem()

getItem(key): string | null

Defined in: src/world/anchors/LocalStorageAnchorStore.ts:6

Parameters

key

string

Returns

string | null


removeItem()

removeItem(key): void

Defined in: src/world/anchors/LocalStorageAnchorStore.ts:8

Parameters

key

string

Returns

void


setItem()

setItem(key, value): void

Defined in: src/world/anchors/LocalStorageAnchorStore.ts:7

Parameters

key

string

value

string

Returns

void