18 lines
347 B
Go
18 lines
347 B
Go
package log
|
|
|
|
// Code generated by chromedp-gen. DO NOT EDIT.
|
|
|
|
import (
|
|
cdp "github.com/knq/chromedp/cdp"
|
|
)
|
|
|
|
// EventEntryAdded issued when new message was logged.
|
|
type EventEntryAdded struct {
|
|
Entry *Entry `json:"entry"` // The entry.
|
|
}
|
|
|
|
// EventTypes all event types in the domain.
|
|
var EventTypes = []cdp.MethodType{
|
|
cdp.EventLogEntryAdded,
|
|
}
|