mirror of
https://github.com/stashapp/stash.git
synced 2025-12-14 20:33:16 +01:00
22 lines
820 B
Go
22 lines
820 B
Go
package inspector
|
|
|
|
// Code generated by cdproto-gen. DO NOT EDIT.
|
|
|
|
// EventDetached fired when remote debugging connection is about to be
|
|
// terminated. Contains detach reason.
|
|
//
|
|
// See: https://chromedevtools.github.io/devtools-protocol/tot/Inspector#event-detached
|
|
type EventDetached struct {
|
|
Reason DetachReason `json:"reason"` // The reason why connection has been terminated.
|
|
}
|
|
|
|
// EventTargetCrashed fired when debugging target has crashed.
|
|
//
|
|
// See: https://chromedevtools.github.io/devtools-protocol/tot/Inspector#event-targetCrashed
|
|
type EventTargetCrashed struct{}
|
|
|
|
// EventTargetReloadedAfterCrash fired when debugging target has reloaded
|
|
// after crash.
|
|
//
|
|
// See: https://chromedevtools.github.io/devtools-protocol/tot/Inspector#event-targetReloadedAfterCrash
|
|
type EventTargetReloadedAfterCrash struct{}
|