Liking cljdoc? Tell your friends :D

clj-chrome-devtools.commands.domstorage

Query and modify DOM storage.

Query and modify DOM storage.
raw docstring

clearclj

(clear)
(clear {:as params :keys [storage-id]})
(clear connection {:as params :keys [storage-id]})

Parameters map keys:

KeyDescription
:storage-idnull

Parameters map keys:


  Key         | Description 
  ------------|------------ 
  :storage-id | null
sourceraw docstring

disableclj

(disable)
(disable {:as params :keys []})
(disable connection {:as params :keys []})

Disables storage tracking, prevents storage events from being sent to the client.

Disables storage tracking, prevents storage events from being sent to the client.
sourceraw docstring

enableclj

(enable)
(enable {:as params :keys []})
(enable connection {:as params :keys []})

Enables storage tracking, storage events will now be delivered to the client.

Enables storage tracking, storage events will now be delivered to the client.
sourceraw docstring

get-dom-storage-itemsclj

(get-dom-storage-items)
(get-dom-storage-items {:as params :keys [storage-id]})
(get-dom-storage-items connection {:as params :keys [storage-id]})

Parameters map keys:

KeyDescription
:storage-idnull

Return map keys:

KeyDescription
:entriesnull

Parameters map keys:


  Key         | Description 
  ------------|------------ 
  :storage-id | null

Return map keys:


  Key      | Description 
  ---------|------------ 
  :entries | null
sourceraw docstring

remove-dom-storage-itemclj

(remove-dom-storage-item)
(remove-dom-storage-item {:as params :keys [storage-id key]})
(remove-dom-storage-item connection {:as params :keys [storage-id key]})

Parameters map keys:

KeyDescription
:storage-idnull
:keynull

Parameters map keys:


  Key         | Description 
  ------------|------------ 
  :storage-id | null
  :key        | null
sourceraw docstring

set-dom-storage-itemclj

(set-dom-storage-item)
(set-dom-storage-item {:as params :keys [storage-id key value]})
(set-dom-storage-item connection {:as params :keys [storage-id key value]})

Parameters map keys:

KeyDescription
:storage-idnull
:keynull
:valuenull

Parameters map keys:


  Key         | Description 
  ------------|------------ 
  :storage-id | null
  :key        | null
  :value      | null
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close