blob: a5e0fc4357262f72a8f86f9cdd6a2962cb747e30 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// 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
[
SecureContext,
ImplementedAs=HandwritingRecognitionService,
RuntimeEnabled=HandwritingRecognition
] partial interface Navigator {
[CallWith=ScriptState, RaisesException]
Promise<HandwritingRecognizer>
createHandwritingRecognizer(HandwritingModelConstraint constraint);
[CallWith=ScriptState, RaisesException]
Promise<HandwritingFeatureQueryResult>
queryHandwritingRecognizerSupport(HandwritingFeatureQuery query);
};