blob: 84432047e6a985896012ad962365322ed0971d1b [file] [log] [blame]
// Copyright 2019 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.
// Specification at:
// http://w3c.github.io/web-nfc/#dom-ndefreadingevent
[
RuntimeEnabled=WebNFC,
SecureContext,
Exposed=Window
] interface NDEFReadingEvent : Event {
[RaisesException] constructor(DOMString type, NDEFReadingEventInit eventInitDict);
readonly attribute DOMString serialNumber;
[SameObject] readonly attribute NDEFMessage message;
};