/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Validator } from './validator.js'; /** * Constraint validation properties for a select dropdown. */ export interface SelectState { /** * The current selected value. */ readonly value: string; /** * Whether the select is required. */ readonly required: boolean; } /** * A validator that provides constraint validation that emulates `