# 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 DOMStorage Domain Events"""

from typing_extensions import TypedDict

from typing import TYPE_CHECKING

if TYPE_CHECKING:
    from .types import StorageId


class DomStorageItemAddedEvent(TypedDict):
    storageId: "StorageId"
    key: "str"
    newValue: "str"


class DomStorageItemRemovedEvent(TypedDict):
    storageId: "StorageId"
    key: "str"


class DomStorageItemUpdatedEvent(TypedDict):
    storageId: "StorageId"
    key: "str"
    oldValue: "str"
    newValue: "str"


class DomStorageItemsClearedEvent(TypedDict):
    storageId: "StorageId"
