chromium/third_party/blink/renderer/core/animation/base_property_indexed_keyframe.idl

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// https://w3.org/TR/web-animations-1/#dictdef-basepropertyindexedkeyframe

dictionary BasePropertyIndexedKeyframe {
  (KeyframeOffset? or sequence<KeyframeOffset?>) offset = [];
  (DOMString or sequence<DOMString>) easing = [];
  (CompositeOperationOrAuto or sequence<CompositeOperationOrAuto>) composite = [];
};