// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Initialization dictionary type for GamepadAxisEvent.
// https://docs.google.com/document/d/1rnQ1gU0iwPXbO7OvKS6KO9gyfpSdSQvKhK9_OkzUuKE
dictionary GamepadAxisEventInit : GamepadEventInit {
unsigned long axis;
double value;
};