# This file is auto-generated by the CDP protocol generator.
# Do not edit this file manually as your changes will be overwritten.
# Generated from Chrome DevTools Protocol specifications.

"""CDP EventBreakpoints Domain Commands"""

from typing_extensions import TypedDict


class SetInstrumentationBreakpointParameters(TypedDict):
    eventName: "str"
    """Instrumentation name to stop on."""


class RemoveInstrumentationBreakpointParameters(TypedDict):
    eventName: "str"
    """Instrumentation name to stop on."""
