blob: 86b77d3c8474749d5b0292e28e65def4337231fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
(in-package :extreload)
(defclass config ()
((socket-url
:initarg :socket-url
:reader socket-url
:documentation "DevTools WebSocket URL")
(extension-ids
:initarg :extension-ids
:reader extension-ids
:documentation "Sequence of extension IDs")
(reload-current-tab
:initarg :reload-current-tab
:initform nil
:reader reload-current-tab
:documentation "True if the current tab should be reloaded")))
|