// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // https://github.com/WICG/handwriting-recognition/blob/main/explainer.md enum HandwritingRecognitionType{ "text" }; enum HandwritingInputType { "mouse", "stylus", "touch" }; dictionary HandwritingHintsQueryResult { sequence recognitionType; sequence inputType; boolean textContext; boolean alternatives; }; dictionary HandwritingRecognizerQueryResult { boolean textAlternatives; boolean textSegmentation; HandwritingHintsQueryResult hints; };