Files
ladybird/Libraries/LibWeb/HTML/ColorPickerUpdateState.h
2024-11-10 12:50:45 +01:00

17 lines
232 B
C++

/*
* Copyright (c) 2023, Bastiaan van der Plaat <bastiaan.v.d.plaat@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
namespace Web::HTML {
enum class ColorPickerUpdateState {
Update,
Closed,
};
}