ladybird/Libraries/LibWeb/HTML/ColorPickerUpdateState.h

17 lines
232 B
C
Raw Normal View History

/*
* 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,
};
}