chromedp/cdp/database/events.go

18 lines
320 B
Go
Raw Normal View History

2017-01-24 15:09:23 +00:00
package database
// AUTOGENERATED. DO NOT EDIT.
import (
2017-01-26 07:28:34 +00:00
cdp "github.com/knq/chromedp/cdp"
2017-01-24 15:09:23 +00:00
)
2017-01-26 07:28:34 +00:00
// EventAddDatabase [no description].
2017-01-24 15:09:23 +00:00
type EventAddDatabase struct {
Database *Database `json:"database"`
2017-01-24 15:09:23 +00:00
}
2017-01-26 07:28:34 +00:00
// EventTypes all event types in the domain.
var EventTypes = []cdp.MethodType{
cdp.EventDatabaseAddDatabase,
2017-01-24 15:09:23 +00:00
}