From 160e2446fc756ccd5462d2a6e4595af3331048d0 Mon Sep 17 00:00:00 2001 From: mukherjeesudebi Date: Tue, 18 Apr 2023 15:24:54 +0300 Subject: [PATCH] added @return doc added @return doc for validate method --- src/vaadin-time-picker.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vaadin-time-picker.html b/src/vaadin-time-picker.html index 1a704ad..d8d5134 100644 --- a/src/vaadin-time-picker.html +++ b/src/vaadin-time-picker.html @@ -710,6 +710,8 @@ * Validates the field and sets the `invalid` property based on the result. * * The method fires a `validated` event with the result of the validation. + * + * @return {boolean} True if the value is valid. */ validate() { const isValid = this.checkValidity();