@univerjsuiindexclassesDesktoplocalstorageservice

@univerjs/ui v0.5.0-beta.1Docs


Class: DesktopLocalStorageService

Implements

Constructors

new DesktopLocalStorageService()

new DesktopLocalStorageService(): DesktopLocalStorageService

Returns

DesktopLocalStorageService

Methods

clear()

clear(): Promise<void>

Returns

Promise<void>

Implementation of

ILocalStorageService.clear

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:33


getItem()

getItem<T>(key): Promise<null | T>

Type Parameters

Type Parameter
T

Parameters

ParameterType
keystring

Returns

Promise<null | T>

Implementation of

ILocalStorageService.getItem

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:21


iterate()

iterate<T, U>(iteratee): Promise<U>

Type Parameters

Type Parameter
T
U

Parameters

ParameterType
iteratee(value, key, iterationNumber) => U

Returns

Promise<U>

Implementation of

ILocalStorageService.iterate

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:45


key()

key(index): Promise<null | string>

Parameters

ParameterType
indexnumber

Returns

Promise<null | string>

Implementation of

ILocalStorageService.key

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:37


keys()

keys(): Promise<string[]>

Returns

Promise<string[]>

Implementation of

ILocalStorageService.keys

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:41


removeItem()

removeItem(key): Promise<void>

Parameters

ParameterType
keystring

Returns

Promise<void>

Implementation of

ILocalStorageService.removeItem

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:29


setItem()

setItem<T>(key, value): Promise<T>

Type Parameters

Type Parameter
T

Parameters

ParameterType
keystring
valueT

Returns

Promise<T>

Implementation of

ILocalStorageService.setItem

Defined in

submodules/univer/packages/ui/src/services/local-storage/local-storage.service.ts:25