({
pluginId,
}: {
pluginId: string
debug?: boolean
reconnectEveryMs?: number
enabled?: boolean
})
| 18 | #pluginId: string |
| 19 | |
| 20 | constructor({ |
| 21 | pluginId, |
| 22 | }: { |
| 23 | pluginId: string |
| 24 | debug?: boolean |
| 25 | reconnectEveryMs?: number |
| 26 | enabled?: boolean |
| 27 | }) { |
| 28 | this.#pluginId = pluginId |
| 29 | } |
| 30 | |
| 31 | getPluginId() { |
| 32 | return this.#pluginId |
nothing calls this directly
no outgoing calls
no test coverage detected