blob: 135130b03706201c545aecb1f496c561d5009976 [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.
// https://w3c.github.io/web-nfc/#idl-def-ndefrecorddatasource
typedef (DOMString or BufferSource or NDEFMessageInit) NDEFRecordDataSource;
// https://w3c.github.io/web-nfc/#dom-ndefrecordinit
dictionary NDEFRecordInit {
required USVString recordType;
USVString mediaType;
USVString id;
USVString encoding;
USVString lang;
NDEFRecordDataSource data;
};