chromedp/cdp/tethering/events.go

20 lines
512 B
Go

package tethering
// Code generated by chromedp-gen. DO NOT EDIT.
import (
cdp "github.com/knq/chromedp/cdp"
)
// EventAccepted informs that port was successfully bound and got a specified
// connection id.
type EventAccepted struct {
Port int64 `json:"port"` // Port number that was successfully bound.
ConnectionID string `json:"connectionId"` // Connection id to be used.
}
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventTetheringAccepted,
}